Puzzle E9

What is displayed by this program:

#include <stdio.h>
#include <stdlib.h>

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


Answer         Next Page         Previous Page Home