enum colors {BLACK,BLUE,GREEN} main() { printf("%d..%d..%d",BLACK,BLUE,GREEN); return(1); }
ME,
4 16952void main() { char far *farther,*farthest; printf("%d..%d",sizeof(farther),sizeof(farthest)); }
3 30991main() { int i=1; while (i<=5) { printf("%d",i); if (i>2) goto here; i++; } } fun() { here: printf("PP"); }
ME,
3 15200#include main() { int i=1,j=2; switch(i) { case 1: printf("GOOD"); break; case j: printf("BAD"); break; } }
ME,
6 19719how does the for loop work actually..suppose for the following program how it ll work plz explain to me for(i=5;i>=0;i--) prinf(i--);
RMSI,
19 24196
Place the #include statement must be written in the program?
How will you delete a node in DLL?
Explain what are global variables and explain how do you declare them?
Write the control statements in C language
What is a volatile keyword in c?
Why do we use main function?
Write a program to print fibonacci series using recursion?
What is modifier & how many types of modifiers available in c?
What's a good way to check for "close enough" floating-point equality?
How main function is called in c?
What is the significance of scope resolution operator?
What are different storage class specifiers in c?
What is d'n in c?
What is typedef?
what is the height of tree if leaf node is at level 3. please explain