what happens if we do not use break in switch case? Give an example
Answers
Answered by
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
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