Switch case Statement
Switch case Statement
A switch statement is used when there is requirement to check multiple condition in a program. It provides an easy way to branch to different parts of the code in program based on the value of an expression. It is a substitute for the large series of else if statements.
Syntax:
switch(expression)
{
case constant:
statement;
break;
case constant:
statement;
break;
..
..
default:
statement;
}