Answer (Choose 1 answer)
What is the output when the sample code below is executed?
int i;
for(i=1;i<4;i++)
switch(i){case 1:
printf("%d ",i);
break;case 2:
printf("%d ",i);
break;case 3:
A. 12
B. 4
C. 123
D. 3
E. 1234
break;printf("%d ",i);
case 4:
printf("%d ",i);
}
FUS