How do I create a directory? How do I remove a directory (and its contents)?
How can you be sure that a program follows the ANSI C standard?
#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 ؟؟؟
What are the data types present in c?
what is the output of below pgm? void main() { int i=0; if(i) printf("pass"); else printf("fail"); }
What is type qualifiers?
Why c is called procedure oriented language?
What is the mean of function?
String concatenation
What is actual argument?
Describe dynamic data structure in c programming language?
What is identifiers in c with examples?
what is associativity explain what is the precidence for * and & , * and ++ how the folloing declaration work 1) *&p; 2) *p++;