switch case Statement in C
switch case statement is another control flow decision making statement supported by C programming language. The general syntax of switch case is as follows; switch ( expression ) { case value1: statement1; break; case value2: statement2; break; . . . case valuen: statementn; break; default: statementx; } The switch case construct first evaluates the expression … Read more