A
Q. What is the output of C program with switch statement or block.?
Code:
int main()
{
int a;
switch(a);
{
printf("DEER ");
}
printf("LION");
}
{
int a;
switch(a);
{
printf("DEER ");
}
printf("LION");
}
- Correct Answer - Option(B)
- Views: 16
- Filed under category C Programming
- Hashtags:
Discusssion
Login to discuss.