Answer E1

Expression evaluates to: 45

Well, that was not hard. Explicit values evaluate to themselves.

But be cautions about data types. In the printf, the %d (for integer) must match the data type of the 45 (an integer):

  printf("Expression evaluates to: %d\n", 45);


Back to Puzzle Home