Predict the Output: int a = 2;switch(a) { case 1: printf(…
Predict the Output: int a = 2;switch(a) { case 1: printf(“One”); case 2: printf(“Two”); case 3: printf(“Three”);} Explain what is printed and why? Consider the code is fully formed, i.e., no excuses like missing main(), missing stdio.h, etc.