Assuming this example code (source):
#include
void playgame()
{
printf( \"Play game called\" );
}
void loadgame()
{
printf( \"Load g
Actually, you don't need the break in default case. And as your checking, it's the same if you don't have break in default case.
But in my opinion, you should have the break in default case, because: