programming selection switch case code example
Example: switch case c
switch (expression) {
case constant1:
// statements
break;
case constant2:
// statements
break;
default:
// default statements
}
switch (expression) {
case constant1:
// statements
break;
case constant2:
// statements
break;
default:
// default statements
}