Computer Science, asked by noushin99882, 9 months ago

What happen if you dont declare a break statement in swith for all cases?

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

Explanation:

hope it will help you

Similar questions