C Switch Statement

In the C programming language, the switch statement is a control flow construct that allows you to select one of many code blocks to be executed based on the value of a given expression. It provides an alternative to using multiple if-else statements when you have a series of conditions to check.

The syntax of the switch statement in C is as follows:

switch (expression) {
    case constant1:
        // code block 1
        break;
    case constant2:
        // code block 2
        break;
    case constant3:
        // code block 3
        break;
    default:
        // default code block
}

Here’s how the switch statement works:

  • The expression inside the switch statement is evaluated.
  • The value of the expression is compared to the values of each case constant.
  • If a match is found, the code block associated with that case is executed.
  • The break statement is used to exit the switch statement once a match is found. Without the break statement, execution will continue to the next case, resulting in multiple code blocks being executed.
  • If no match is found, the code block inside the default case is executed (if present).

Let’s see some examples to better understand how the switch statement works:

#include 

int main() {
    int day = 3;
    switch (day) {
        case 1:
            printf("Mondayn");
            break;
        case 2:
            printf("Tuesdayn");
            break;
        case 3:
            printf("Wednesdayn");
            break;
        case 4:
            printf("Thursdayn");
            break;
        case 5:
            printf("Fridayn");
            break;
        default:
            printf("Weekendn");
    }
    return 0;
}

In this example, the value of the variable “day” is 3. The switch statement compares the value of “day” with each case constant. Since there is a match with case 3, the code block associated with that case is executed, resulting in the output “Wednesday”.

Here’s another example:

#include 

int main() {
    char grade = 'B';
    switch (grade) {
        case 'A':
        case 'B':
        case 'C':
            printf("Passn");
            break;
        case 'D':
        case 'E':
            printf("Failn");
            break;
        default:
            printf("Invalid graden");
    }
    return 0;
}

In this example, the value of the variable “grade” is ‘B’. The switch statement checks if the value of “grade” matches any of the case constants. Since there is a match with case ‘B’, the code block associated with that case is executed, resulting in the output “Pass”. Notice that multiple case constants can be grouped together to execute the same code block.

The switch statement can also be used with other data types such as float, enum, and even pointers. It provides a concise and efficient way to handle multiple conditions in your C programs.

However, there are a few things to keep in mind when using the switch statement:

  • The expression inside the switch statement must evaluate to an integer or a character.
  • Each case constant must be unique within the switch statement.
  • The default case is optional and can be placed anywhere within the switch statement.
  • It is important to include a break statement after each code block to prevent fall-through, where execution continues to the next case.

By understanding the C switch statement and its usage, you can make your code more concise and readable. It is a powerful tool for handling multiple conditions and improving the efficiency of your programs.

Scroll to Top