enum colors {BLACK,BLUE,GREEN} main() { printf("%d..%d..%d",BLACK,BLUE,GREEN); return(1); }
ME,
4 16806void main() { char far *farther,*farthest; printf("%d..%d",sizeof(farther),sizeof(farthest)); }
3 30853main() { int i=1; while (i<=5) { printf("%d",i); if (i>2) goto here; i++; } } fun() { here: printf("PP"); }
ME,
3 15082#include main() { int i=1,j=2; switch(i) { case 1: printf("GOOD"); break; case j: printf("BAD"); break; } }
ME,
6 19509how 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 23732
Explain how can I avoid the abort, retry, fail messages?
What is a union?
What is data types?
What the advantages of using Unions?
What is the difference between formatted&unformatted i/o functions?
In C, What is the #line used for?
write a program to print data of 5 five students with structures?
what is a function method?give example?
How can my program discover the complete pathname to the executable from which it was invoked?
Explain how do you print an address?
What is the process to generate random numbers in c programming language?
How is = symbol different from == symbol in c programming?
What is the difference between constant pointer and constant variable?
What are all different types of pointers in c?
find the output? void r(int a[],int c, int n) { if(c>n) { a[c]=a[c]+c; r(a,++c,n); r(a,++c,n); } } int main() { int i,a[5]={0}; r(a,0,5); for(i=0;i<5;i++) printf("\n %d",a[i]); getch(); }