Switch case : Multiple Choice Questions in C

Problem Statement 1 :
void main()
{
int choice = 7 ;
switch(choice)
{
default :
printf("nI am in Default");

case 1 :
printf("nI am in case 1");
break;

case 2 :
printf("nI am in case 2");
break;

case 3 :
printf("nI am in case 3");
break;
}
}



C Switch Case Question  :