Computer Science, asked by opop76, 3 months ago

When does the fall through situation occur in switch...case statement?​

Answers

Answered by Anonymous
3

Explanation:

Following rules govern the fall through the behavior of switch statement. When the variable being switched on is equal to a case, the statements following that case will execute until a break statement is reached.

Similar questions