The ones who are crazy enough to think they can change the world are the ones who do.- Steve Jobs
We use the switch statement to select from multiple choices that are identified by a set of fixed values for a given expression. The expression that selects a choice must produce a result of an integer type other than long, or a string, or a value of an enumeration type. Thus, the expression that controls a switch statement can result in a value of type char, int, short, long, string, or an enumeation constant.
switch ( variable ) { case value1: statement; break; case value2: statement; break; default: statement; }
The following flowchart clearly illustrate how switch statement works
Let's take a look at the switch statement in action. In the following program we will greet either dad or mom or yourself.
#include <stdio.h> int main() { int choice; printf("Press 1 to greet your dad\n "); printf("Press 2 to greet your mom\n "); printf("Press 3 to greet yourself\n "); scanf("%d ",&choice); switch (choice) { case 1: printf("\nHello dad,How are you? "); break; case 2: printf("\nHello mom,How are you? "); break; case 3: printf("\nHello awesome,How are you? "); break; default: printf("\nInvalid choice "); } return 0; }
The above program offers three choices to a user. A choice(number) entered by the user is stored in a variable choice. In switch() statement the value is checked with all the case constants. The matched case statement is executed in which the line is printed according to the user's choice. If user's choice doesn't match with any case statement, then a statement followed by default will be executed.
We may make mistakes(spelling, program bug, typing mistake and etc.), So we have this container to collect mistakes. We highly respect your findings.
© Copyright 2019