Here is the list of types, again:
What is displayed by this program:
#include <stdio.h>
#include <stdlib.h>
/* Puzzle E10 -- mixed types */
int main()
{
printf("Expression evaluates to: %f\n", 10.0 + 5/2 ); /* division is done first */
return 0;
}