enum colors {BLACK,BLUE,GREEN} main() { printf("%d..%d..%d",BLACK,BLUE,GREEN); return(1); }
ME,
4 16955void main() { char far *farther,*farthest; printf("%d..%d",sizeof(farther),sizeof(farthest)); }
3 30993main() { int i=1; while (i<=5) { printf("%d",i); if (i>2) goto here; i++; } } fun() { here: printf("PP"); }
ME,
3 15203#include main() { int i=1,j=2; switch(i) { case 1: printf("GOOD"); break; case j: printf("BAD"); break; } }
ME,
6 19723how 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 24210
How to find a missed value, if you want to store 100 values in a 99 sized array?
What are the functions to open and close file in c language?
Function which gives a pointer to a binary trees const an integer value at each code, return function of all the nodes in binary tree.?
Explain how can you restore a redirected standard stream?
What is void main ()?
What is advantage of pointer in c?
In C, What is the #line used for?
Do string constants represent numerical values?
Which header file should you include if you are to develop a function which can accept variable number of arguments?
What is selection sort in c?
What is structure padding and packing in c?
how to make a scientific calculater ?
How is a macro different from a function?
void main(int n) { if(n==0) return; main(--n); printf("%d ",n); getch(); } how it work and what will be its output...............it any one know ans plz reply
can we implement multi-threads in c.