R
Q. What is the output of C Program with Switch Statement.?
int main() { int a=5; switch(a) { case 0: printf("0 "); case 3: printf("3 "); case 5: printf("5 "); default: printf("RABBIT "); } a=10; switch(a) { case 0: printf("0 "); case 3: printf("3 "); case 5: printf("5 "); default: printf("RABBIT "); break; } return 0; }
No solution found for this question.
Add Solution and get +2 points.
You must be Logged in to update hint/solution
Q. What will be the output of the following C code on a 64 bit machine?
Q. Which of the following is NOT possible with any 2 operators in C?
Q. What is the return type of malloc() or calloc()?
Q. How to write a comment on a single line?
Q. What is the extension of a C language source file?
Q. How many main() function we can have in our project?
Q. What is the output of C Program with functions and pointers.?
Discusssion
Login to discuss.