Warning: implode(): Invalid arguments passed in /www/wwwroot/jobquiz.info/mdiscuss.php on line 336 Point out the error, if any in the program. #include<stdio.h> int main() { int i = 1; switch(i) { printf("This is c program."); case 1: printf("Case1"); break; case 2: printf("Case2"); break; } return 0; } ?->(Show Answer!)
1. Point out the error, if any in the program. #include<stdio.h> int main() { int i = 1; switch(i) { printf("This is c program."); case 1: printf("Case1"); break; case 2: printf("Case2"); break; } return 0; }
Ask Your Doubts Here
Comments
By: guest on 01 Jun 2017 06.01 pm
switch(i) becomes switch(1), then the case 1: block is get executed. Hence it prints "Case1". printf("This is c program."); is ignored by the compiler. Hence there is no error and prints "Case1".