Report Bug
Qus : Choose a correct statement about a C Switch Construct.
QusChoose a correct statement about a C Switch Construct.

A. default case is optional inside switch.
B. break; causes the control to exit the switch immediately and avoid fall down to other CASE statements.
C. You can not use duplicate CASE Constants inside a Switch construct.
D. All the above.


Solution
D. All the above.






Report Bug