Answer E19

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

/* Puzzle E19 -- associativity of + */
int fun04()
{
  printf(" World\n");
  return 4;
}

int fun03()
{
  printf(" Goodbye \n");
  return 3;
}

int fun07()
{
  printf(" Cruel \n");
  return 7;
}

int main()
{
  int result;
  
  result = fun03() + fun07() + fun04() ;  /* Complete this statement */
  
  return 0;
}


Back to Puzzle Home