Answer Is Required Asap 1 (172.02 KiB) Viewed 30 times
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; }
Join a community of subject matter experts. Register for FREE to view solutions, replies, and use search function. Request answer by replying!