Home » C++ switch

C++ switch

The C++ switch statement executes one statement from multiple conditions. It is like if-else-if ladder statement in C++.

Cpp Switch 1


C++ Switch Example

Output:

Enter a number: 10 It is 10 

Output:

Enter a number: 55 Not 10, 20 or 30 
Next TopicC++ For Loop

You may also like