SWITCH STATEMENT IN C PROGRAMMING (with an example ) Syntax of switch...case switch (n) { case constant1: // code to be executed if n is equal to constant1; break; case constant2: // code to be executed if n is equal to constant2; break; . . . default: // code to be executed if n doesn't match any constant Example: switch Statement // Program to create a simple calculator #include <stdio.h> int main () { char operator ; double firstNumber , secondNumber ; printf ( "Enter an operator (+, -, *, /): " ); scanf ( "%c" , & operator ); printf ( "Enter two operands: " ); scanf ( "%lf %lf" ,& firstNumber , & secondNumber ); switch ( operator ) { case '+' : printf ( "%.1lf + %.1lf = %.1lf" , firstNumber , secondNumber , firstNumber + seco...