What is difference between union and structure in c?
No Answer is Posted For this Question
Be the First to Post Answer
Why void main is used in c?
What is the use of typedef in structure in c?
what is the format specifier for printing a pointer value?
Explain can the sizeof operator be used to tell the size of an array passed to a function?
Which of these statements are false w.r.t File Functions? i)fputs() ii)fdopen() iii)fgetpos() iv)ferror() A)ii B)i,ii C)iii D)iv
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
Write a small C program to determine whether a machine's type is little-endian or big-endian.
What is a macro?
What is the best style for code layout in c?
What is the scope of static variables in c language?
Device an algorithm for weiler-atherton polygon clipping, where the clipping window can be any specified polygon
Result of the following program is main() { int i=0; for(i=0;i<20;i++) { switch(i) case 0:i+=5; case 1:i+=2; case 5:i+=5; default i+=4; break;} printf("%d,",i); } } a)0,5,9,13,17 b)5,9,13,17 c)12,17,22 d)16,21 e)syntax error