Computer Science, asked by vedsanisahu1142, 2 months ago

How is switch used as a multi way selection statement

Answers

Answered by venkatsaiteja022
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