Provide instructions for code execution when no case matches within a switch block.
int |
The “default” keyword designates the default code block in a switch statement.
It specifies instructions to execute if no case matches within the switch.
Note: If “default” is the final statement in a switch block, it doesn’t require a “break”.