# Introduction In C, the switch case statement is used to control the execution flow of a program when there are multiple alternatives available. It is one of the decision-making statements in C. The switch case statement evaluates an expression and matches it with multiple values to execute a corresponding block of code. In this lab, you will learn how to use the switch case statement in C with examples.
Click the virtual machine below to start practicing