Puzzle E9

What is displayed by this program:

#include <stdio.h>

/* Puzzle E09 -- promotion to double */
int main()
{
  printf("Expression evaluates to: %f\n", 45.0 + 15 );  /* note format code */
  return 0;
}


Previous Page        Answer         Next Page         Home