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
  1. Babo
  2. Error : Misplaced continue
  3. Hurray
  4. Allas



Select Switch Case Question :


Bookmark & Share