Computer Science, asked by bhavyakumari, 2 months ago

what is the use of break statement in switch case ?​

Answers

Answered by MRHARMONY
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