How can I delete a file?


No Answer is Posted For this Question
Be the First to Post Answer

Post New Answer

More C Interview Questions

what is out put of the following code? #include class Base { Base() { cout<<"constructor base"; } ~Base() { cout<<"destructor base"; } } class Derived:public Base { Derived() { cout<<"constructor derived"; } ~Derived() { cout<<"destructor derived"; } } void main() { Base *var=new Derived(); delete var; }

3 Answers   Honeywell,


int n=1; while(1) { switch(n) { case 1:printf("a"); n++; continue; case 2:printf("b"); n++; continue; default : printf("c"); break; } break; }

1 Answers  


write a program for even numbers?

19 Answers   TCS,


What is an auto keyword in c?

0 Answers  


What is a stream in c programming?

0 Answers  






pick out the odd one out of the following a.malloc() b.calloc() c.free() d.realloc()

2 Answers   TCS, ZenQ,


in C-programming language without using printf statement can we get output r not ? if yes how and if no also how ?

11 Answers   IBM,


how to swap four numbers without using fifth variable?

2 Answers  


What are different types of variables in c?

0 Answers  


1. Write a program to reverse every second word in a given sentence.

1 Answers  


What is the real time usage volatile?

2 Answers   Polycom,


When reallocating memory if any other pointers point into the same piece of memory do you have to readjust these other pointers or do they get readjusted automatically?

0 Answers   TISL,


Categories