43 Which of the following is a multi way decision statement in C?
Answers
Answered by
1
Explanation:
The switch statement:
This statement can be used as multiway decision statement. The switch statement tests the value of a given variable or expression against a list of case values and when a match is found, a block of statements associated with that case is executed.
Similar questions