Puzzle E5

Expressions can include explicit values and operators. What is displayed by the following:

#include <stdio.h>

/* Puzzle E05 -- addition operator */
int main()
{
  printf("Expression evaluates to: %d\n", 45 + 15 );
  return 0;
}


Previous Page        Answer         Next Page         Home