Switch case MCQ 8 : Misplaced continue in switch case
Problem Statement 8 :
void main()
{
int choice = 2 ;
switch(choice)
{
case 1 :
printf("nAllas");
break;
case 2 :
printf("nBabo");
continue;
case 3 :
printf("nHurray");
break;
}
}
Options : Guess the Output
- Babo
- Error : Misplaced continue
- Hurray
- Allas
Select Switch Case Question :
