enum colors {BLACK,BLUE,GREEN} main() { printf("%d..%d..%d",BLACK,BLUE,GREEN); return(1); }
ME,
4 17154void main() { char far *farther,*farthest; printf("%d..%d",sizeof(farther),sizeof(farthest)); }
3 31161main() { int i=1; while (i<=5) { printf("%d",i); if (i>2) goto here; i++; } } fun() { here: printf("PP"); }
ME,
3 15346#include main() { int i=1,j=2; switch(i) { case 1: printf("GOOD"); break; case j: printf("BAD"); break; } }
ME,
6 19996how 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 24748
Please send me WIPRO technical question to my mail ID.. its nisha_g28@yahoo.com please its urgent
What is the easiest sorting method to use?
"C" language developed by "Dennis Ritchie" at AT & T. his remarks are a) too general, too abstract b) could deal with only specific problems c) lost generality of BCPL and B restored d) no remarks
What are the advantage of c language?
Devise a program that inputs a 3 digit number n and finds out whether the number is prime or not. Find out its factors.
In a switch statement, what will happen if a break statement is omitted?
What are the disadvantages of c language?
How do you view the path?
What is data structure in c programming?
How do you construct an increment statement or decrement statement in C?
What is the difference between ++a and a++?
Given two strings S1 and S2. Delete from S2 all those characters which occur in S1 also and finally create a clean S2 with the relevant characters deleted.
What are the 3 types of structures?
How would you use the functions fseek(), freed(), fwrite() and ftell()?
What does c value mean?