A typical “switch” body looks as follows:
switch (controlling_expression)
{
case label1:
/*label1 statements*/
break;
case label2:
/*label1 statements*/
break;
default:
/*Default statements*/
}
Answer: C
No answer description available for this question.