Created
July 9, 2019 14:54
-
-
Save kmuralidharan91/30e7f4f5a3d80760de43c1bd03323d0d to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
switch(expression){ | |
case constant-expression : | |
statement(s); | |
break; /* optional */ | |
case constant-expression : | |
statement(s); | |
break; /* optional */ | |
/* you can have any number of case statements */ | |
default : /* Optional */ | |
statement(s); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment