Computer Science, asked by Himanshu4841, 10 months ago

Explain multi way selection using switch statement in c

Answers

Answered by boruahnikumoni
3

Explanation:

1. A multi way selection statement is used to excited at most one of the choices of a set of statements presented.

  • 2. syntax of the multi way select statement:switch (EXPRESSION)£case constant 1:one Or more statement;break case constant 2:One Or more statement;breakbreak;..
  • 3.example
Similar questions