Computer Science, asked by ckvarghesechakkra, 3 months ago

In switch case ___ is used to mark the end of each case

block.​

Answers

Answered by vaanusonu
0

Explanation:

The break keyword in each case indicates the end of a particular case. If we do not put the break in each case then even though the specific case is executed, the switch in C will continue to execute all the cases until the end is reached. This should not happen; hence we always have to put break keyword in each case.

Mark me as brainliest

Similar questions