enum colors {BLACK,BLUE,GREEN} main() { printf("%d..%d..%d",BLACK,BLUE,GREEN); return(1); }
ME,
4 17147void main() { char far *farther,*farthest; printf("%d..%d",sizeof(farther),sizeof(farthest)); }
3 31152main() { int i=1; while (i<=5) { printf("%d",i); if (i>2) goto here; i++; } } fun() { here: printf("PP"); }
ME,
3 15339#include main() { int i=1,j=2; switch(i) { case 1: printf("GOOD"); break; case j: printf("BAD"); break; } }
ME,
6 19992how 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 24717
How to establish connection with oracle database software from c language?
Can we replace the struct function in tree syntax with a union?
Where in memory are my variables stored?
"%u" unsigned integer print the a) address of variable b) value of variable c) name of a variable d) none of the above
What is the symbol indicated the c-preprocessor?
Write an algorithm for implementing insertion and deletion operations in a singly linked list using arrays ?
Write a program to check prime number in c programming?
What is meant by type casting?
What are global variables and how do you declare them?
How to implement a packet in C
Explain how do you generate random numbers in c?
Can a local variable be volatile in c?
what does static variable mean?
Explain threaded binary trees?
What would happen to X in this expression: X += 15; (assuming the value of X is 5)