(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:
break;
printf("%d ",i);
}
case 4:
printf("%d ",i);
A. 1 2 3
B. 1234
C. 12
D. 3
E. 4
Exit 50