Predict the Output: int x = 1;switch(x) { case 1: …
Predict the Output: int x = 1;switch(x) { case 1: printf(“A”); case 2: printf(“B”); break; default: printf(“C”);} Explain what is printed and why? Consider the code is fully formed, i.e., no excuses like missing main(), missing stdio.h, etc.
Read Details