# include <stdio.h>
int ma

Loading

โœช Choose the correct option.

# include 
int main()
{
int n = 0;
for (n=0; n<20; n++)
{
switch(n)
{
case 0:
n += 5;
case 1:
n += 2;
case 5:
n += 5;
default:
n += 4;
break;
}
printf("%d ", n);
}
return 0;
}

A. 7 12 17 22
B. 5 10 15 20
C. 16 21
D. Compiler error

Leave a Comment