In C Programming Language, switch case statement follows the fall down property. It means when case block is executed and break statement is not used after the block statements, then it will execute next case or default statements until break not reached or switch not finished.