What does nil mean in c?
No Answer is Posted For this Question
Be the First to Post Answer
What is meant by int fun const(int a, int b) { .... ... }
Why main function is special give two reasons?
out put of printf(“%d”,printf(ram));
main() { FILE *fs; char c[10]; fs = fopen(“source.txt”, ”r”); /* source.txt exists and contains “Vector Institute” */ fseek(fs,0,SEEK_END); fseek(fs,-3L,SEEK_CUR); fgets(c,5,fs); puts(c); }
What will be the result of the following program? char*g() { static char x[1024]; return x; } main() { char*g1="First String"; strcpy(g(),g1); g1=g(); strcpy(g1,"Second String"); printf("Answer is:%s", g()); } (A) Answer is: First String (B) Answer is: Second String (C) Run time Error/Core Dump (D) None of these
how to make program without <> in libray.
What is the difference between %d and %i?
5. distance conversion: Convert a distance from miles to kilometers .there are 5280 feets per mile,12 inches per foot .2.54 centimeters per inch and 100000centimeters per kilometer
How do I create a directory? How do I remove a directory (and its contents)?
In C program, at end of the program we will give as "return 0" and "return 1", what they indicate? Is it mandatory to specify them?
Define VARIABLE?
how does a general function , that accepts an array as a parameter, "knows" the size of the array ? How should it define it parameters list ?