(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("%c ",'A');break;
case 2: printf("%c ",'B');break;
case 3: printf("%c ",'C');break;
case 4: printf("%c ",'D');}
A.ABC
B.ABCD
C. Nothing (no output)
D. A
Q: 32