Computer Science, asked by Sonygupta, 3 months ago

what happens if we do not use break in switch case? Give an example​

Answers

Answered by Anonymous
2

Answer:

If we do not use break statement at the end of each case, program will execute all consecutive case statements until it finds next break statement or till the end of switch case block.

Answered by Anonymous
4

Answer:

If we do not use break statement at the end of each case, program will execute all consecutive case statements until it finds next break statement or till the end of switch case block.

Similar questions