How do I create a directory? How do I remove a directory (and its contents)?


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

Post New Answer

More C Interview Questions

To what value do nonglobal variables default? 1) auto 2) register 3) static

4 Answers  


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,


Write a Program to print this triangle: * ** * **** * ****** * ******** * ********** use two nested loops.

12 Answers   MIT, TCS,


can u give me the good and very optimised code for a car racing game?

0 Answers  


write a program that finds the factorial of a number using recursion?

13 Answers   Infosys, TATA,






What are logical errors and how does it differ from syntax errors?

0 Answers  


WHAT IS MAXIMUM SIZE OF AN ARRAY IN C LANGUAGE?

8 Answers   Carphone Warehouse, IBM, SAS,


What is oops c?

0 Answers  


what is the difference between %d and %*d in c languaga?

7 Answers   TCS,


By using C language input a date into it and if it is right?

0 Answers   Aricent,


What are the 4 types of unions?

0 Answers  


Result of the following program is main() { int i=0; for(i=0;i<20;i++) { switch(i) case 0:i+=5; case 1:i+=2; case 5:i+=5; default i+=4; break;} printf("%d,",i); } } a)0,5,9,13,17 b)5,9,13,17 c)12,17,22 d)16,21 e)syntax error

8 Answers   IBM,


Categories