
switch Statement Use the switch statement to select one of many blocks of code to be executed. The switch statement is used to perform different actions based on different conditions. Syntax switch (n) { case label1: code to be executed if n=label1; break; case label2: …