What are the different types of objects used in c?
No Answer is Posted For this Question
Be the First to Post Answer
main() { int i,j,A; for(A=-1;A<=1;A++) prinf("%d\t",!!A); }
Where can I get an ansi-compatible lint?
wap to print "hello world" without using the main function.
What does return 1 means in c?
Can a pointer be static?
What are the advantages of c preprocessor?
1)what is the error in the following stmt where str is a char array and the stmt is supposed to traverse through the whole character string str? for(i=0;str[i];i++) a)There is no error. b)There shud be no ; after the stmt. c)The cond shud be str[i]!='\0' d)The cond shud be str[i]!=NULL e)i shud be initialized to 1
Explain how can you tell whether a program was compiled using c versus c++?
Wt are the Buses in C Language
Why #include is used in c language?
Give a one-line C expression to test whether a number is a power of 2. [No loops allowed - it's a simple test.]
main() { enum{red,green,blue=6,white}; pf("%d%d%d%d", red,green,blue,white); return 0; } a)0 1 6 2 b)0 1 6 7 c)Compilation error d)None of the above