Q. Determine Output
Code:void main()
{
int i=3;
switch(i)
{
default: printf("zero");
case 1: printf("one"); break;
case 2: printf("two"); break;
case 3: printf("three"); break;
}
}
β
Correct Answer: (B)
three
Explanation: The default case can be placed anywhere inside the loop. It is executed only when all other cases doesn't match.