Q. What is the output of C Program with switch statement or block.?
Code:int main()
{
int a=3;
switch(a)
{
}
printf("MySwitch");
}
β
Correct Answer: (A)
MySwitch
int main()
{
int a=3;
switch(a)
{
}
printf("MySwitch");
}
You must be Logged in to update hint/solution