Menu
×
×
Correct!
Exercise:Fill in the missing parts to create three variables of the same type, using a comma-separated list:
int x = 5, y = 6, z = 50;
printf("%d", x + y + z);
Not CorrectClick here to try again. Correct!Next ❯x = 5 y = 6 z = 50; printf("%d", x + y + z); |