C++ Programming Code Examples C++ > If Else and Switch Case Code Examples Switch case statement in C++ programming Switch case statement in C++ programming #include <stdio.h> #include <conio.h> void main() { int x = 3; clrscr(); switch(x) { case 2: printf("Two\n"); case 3: printf("Three\n"); } cout << "C++ Programming Language | Happy Codings :)"; getch(); }