Question 1
Which of the following statements are true about the switch statement in C?
default case is compulsory in every switch.
Multiple case labels can share the same code block.
break is optional in a switch case.
A switch can be written inside another switch.
