enum colors {BLACK,BLUE,GREEN} main() { printf("%d..%d..%d",BLACK,BLUE,GREEN); return(1); }
ME,
4 16943void main() { char far *farther,*farthest; printf("%d..%d",sizeof(farther),sizeof(farthest)); }
3 30979main() { int i=1; while (i<=5) { printf("%d",i); if (i>2) goto here; i++; } } fun() { here: printf("PP"); }
ME,
3 15196#include main() { int i=1,j=2; switch(i) { case 1: printf("GOOD"); break; case j: printf("BAD"); break; } }
ME,
6 19707how 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 24181
What is pass by reference in c?
write a program to find the given number is prime or not
How do you convert strings to numbers in C?
What is the use of structure padding in c?
Explain 'far' and 'near' pointers in c.
Why c is a mother language?
What is a floating point in c?
Explain what’s a signal? Explain what do I use signals for?
a number whose only prime factors are 2,3,5, and 7 is call humble number,,write a program to find and display the nth element in this sequence.. sample input : 2,3,4,11,12,13, and 100.. sample output : the 2nd humble number is 2,the 3rd humble number is 3,the 4th humble number is ,the 11th humble number is 12, the 12th humble number is 14, the 13th humble number is 15, the 100th humble number is 450.
How to set file pointer to beginning c?
What are the modifiers available in c programming language?
What are valid operations on pointers?
illustrate the use of address operator and dereferencing operator with the help of a program guys plzzz help for this question
How macro execution is faster than function ?
Explain how can I right-justify a string?