Unconditional Control Statement
2020-05-12
There are 4 types of Unconditional/Case Control Statements in C language. They are, switch break continue goto 1. SWITCH CASE STATEMENT IN C: Switch case statements are used to execute only specific case statements based on the switch expression. Below is the syntax for switch case statement. switch (expression){ caseContinue Reading