Puzzle E5

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

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

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


Answer         Next Page         Previous Page Home