Saved Bookmarks
| 1. |
Using switch case statement or menu driven 1.1 2 3 4 5 4 3 2 12 3 4 5 4 3 2345434 545 |
|
Answer» Before we see how a SWITCH case statement WORKS in a C program, LET’s checkout the syntax of it.switch (variable or an integer expression){ case constant: //C Statements ; case constant: //C Statements ; DEFAULT: //C Statements ;}Flow Diagram of Switch Case |
|