Q. What is the output of C Program with switch statement.?
Code:int main()
{
int a=3;
switch(a)
{
case 2: printf("ZERO "); break;
case default: printf("RABBIT ");
}
}
β
Correct Answer: (D)
Compiler error