which statement is a multi way statement and why?
Answers
Answered by
2
Answer:
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