Computer Science, asked by karankumarsharma25, 5 hours ago

(a) Explain Switch-Case Statement with syntax.​

Answers

Answered by mayanksaha9125
1

Answer:

Switch statement in C tests the value of a variable and compares it with multiple cases. Once the case match is found, a block of statements associated with that particular case is executed. ... The value provided by the user is compared with all the cases inside the switch block until the match is found.

Explanation:

Similar questions