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