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

How can you be sure that a program follows the ANSI C standard?

0 Answers   Aspire, Infogain,


#include <stdio.h> int main() { int i; for (i=0;i<3;++i) { fork();fork(); } } How many processes are created when running this program (including the initial one)? Explain &#1567;&#1567;&#1567;

4 Answers  


What are the data types present in c?

0 Answers  


what is the output of below pgm? void main() { int i=0; if(i) printf("pass"); else printf("fail"); }

4 Answers  


What is type qualifiers?

0 Answers  


Why c is called procedure oriented language?

0 Answers  


What is the mean of function?

0 Answers  


String concatenation

2 Answers  


What is actual argument?

0 Answers  


Describe dynamic data structure in c programming language?

0 Answers  


What is identifiers in c with examples?

0 Answers  


what is associativity explain what is the precidence for * and & , * and ++ how the folloing declaration work 1) *&p; 2) *p++;

0 Answers   L&T,


Categories