Menu
×
×
Correct!
Exercise:Use type conversion to make sure that the result of the following example is
float sum = @(7) 3 / 2;
printf("%.1f", sum);
float sum = (float) 3 / 2;
printf("%.1f", sum);
Not CorrectClick here to try again. Correct!Next ❯ |
This will reset the score of ALL 46 exercises.
Are you sure you want to continue?