any C program contains only one function, it must be
a) void ()
b) main ()
c) message ()
d) abc ()
#define f(g,h) g##h main O int i=0 int var=100 ; print f ("%d"f(var,10));} what would be the output?
Why can’t we compare structures?
how can f be used for both float and double arguments in printf? Are not they different types?
prog for 1st five prime numbers in 2^x - 1
How can I recover the file name given an open stream or file descriptor?
What is property type c?
int array[]={1,2,3,4,5,6,7,8}; #define SIZE (sizeof(array)/sizeof(int)) main() { if(-1<=SIZE) printf("1"); else printf("2"); }
what is the diff b/w static and non static variables in C. Give some examples plz.
What is the difference between arrays and pointers?
Write c-code for 5+55+555+5555+55555+555555+5555555. Output will be it's answer...
What is the difference between File pointer and Internal Charecter Pointer?
Can we declare variables anywhere in c?