what is the use of break statement in switch case ?
Answers
Answered by
4
Explanation:
You can use the break statement to end processing of a particular labeled statement within the switch statement. It branches to the end of the switch statement. Without break , the program continues to the next labeled statement, executing the statements until a break or the end of the statement is reached.
Similar questions