Q. What is the output of C program with switch statement or block.?
Code:
int main()
{
int a;
switch(a);
{
printf("DEER ");
}
printf("LION");
}
β
Correct Answer: (B)
DEER LION