List of Switch case programs with an examples
Switch case statements are an alternate method for long if statements that compare a variable to several 'integral' values. The value of the variable given into switch is compared to the value following each of the cases, and when one value matches t ...