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