How is switch used as a multi way selection statement
Answers
Answered by
0
Explanation:
A multi-way selection statement is used to execute at most ONE of the choices of a set of statements presented. Syntax of the multi-way select statement: switch ( EXPRESSION ) { case CONSTANT1: one or more statements; break; case CONSTANT2: one or more statements; break; ...
Similar questions