Computer Science, asked by cutieisha17, 1 month ago


If none of the cases matches
block gets executed in switch case.​

Answers

Answered by tanunagar21
0

Answer:

Without break , the program continues to the next labeled statement, executing the statements until a break or the end of the statement is reached. ... If there's no default statement, and no case match is found, none of the statements in the switch body get executed. There can be at most one default statementWithout break , the program continues to the next labeled statement, executing the statements until a break or the end of the statement is reached. ... If there's no default statement, and no case match is found, none of the statements in the switch body get executed. There can be at most one default statement

Similar questions