Structure of Switch Statement // variable_to_test: A varible to test. switch ( variable_to_test ) { case value1: // Do something here … break; case value2: // Do something here … break; default: // Do something here … } The characteristics of switch statement: The switch will check the value of a variableContinue Reading