Puzzle E10

Here is the list of types, again:

What is displayed by this program:

#include <stdio.h>

/* Puzzle E10 -- mixed types */
int main()
{
  printf("Expression evaluates to: %f\n", 10.0 + 5/2 );  /* division is done first */
  return 0;
}


Previous Page        Answer         Next Page         Home