Question: What will the following code print? int i = 10; switch (i) { case 9: i = 7; case 10: i = 12; case 11:
What will the following code print?
int i = 10;
switch (i) {
case 9:
i = 7;
case 10:
i = 12;
case 11:
i = 4;
default:
i = -3;
}
printf("%d ", i);
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
