Menu
×
×
Correct!
Exercise:Use the correct format specifier to output the value of
int myNum = 15;
printf("%d", myNum);
int myNum = 15;
printf("%i", myNum);
Not CorrectClick here to try again. Correct!Next ❯int myNum = 15; printf("", myNum); |