answer is required asap
Posted: Sat Feb 19, 2022 3:20 pm
answer is required asap
what will be the output of the following program? int main() { int a=5; switch(a) { case 0: printf("o "); case 3: printf("3"); case 5: printf("5 "); default: printf("RABBIT "); } a=10; switch(a) { case 0: printf("o case 3: printf(13); case 5: printf(15); default: printf("RABBIT ID break; } W return 0; }
what will be the output of the following program? int main() { int a=5; switch(a) { case 0: printf("o "); case 3: printf("3"); case 5: printf("5 "); default: printf("RABBIT "); } a=10; switch(a) { case 0: printf("o case 3: printf(13); case 5: printf(15); default: printf("RABBIT ID break; } W return 0; }