Menu
×
×
Correct!
Exercise:Insert the missing parts to complete the following
int day = 2;
switch (@(3)) {
@(4) 1:
printf("Monday");
@(5);
@(4) 2:
printf("Sunday");
@(5);
}
int day = 2;
switch (day) {
case 1:
printf("Monday");
break;
case 2:
printf("Sunday");
break;
}
Not CorrectClick here to try again. Correct!Next ❯ |
This will reset the score of ALL 46 exercises.
Are you sure you want to continue?