Menu
×
×
Correct!
Exercise:Fill in the missing parts to create three variables of the same type, using a comma-separated list:
@(3) myNum1 = 10@(1) myNum2 = 15@(1) myNum3 = 25;
printf("%d", myNum1 + myNum2 + myNum3);
int myNum1 = 10, myNum2 = 15, myNum3 = 25;
printf("%d", myNum1 + myNum2 + myNum3);
Not CorrectClick here to try again. Correct!Next ❯ |
This will reset the score of ALL 46 exercises.
Are you sure you want to continue?