0
4.3kviews
Explain switch control statement with the help of example.
1 Answer
| written 9.3 years ago by |
Decision making are needed when, the program encounters the situation to choose a particular statement among many statements.
If a programmer has to choose one block of statement among many alternatives, nested if...else can be used but, this makes programming logic complex.
This type of problem can be handled in …