Table Of Contents
Previous Section Next Section

Program 70: Two Simple

Why does 2 + 2 = 5986?

  1 /************************************************
  2  * two_plus_two -- So what is 2+2 anyway?       *
  3  ************************************************/
  4 #include <stdio.h>
  5
  6 int main()
  7 {
  8     /* Result of the addition */
  9     int answer = 2 + 2;
 10
 11     printf("The answer is %d\n");
 12     return (0);
 13 }

(Next Hint 164. Answer 85.)

Table Of Contents
Previous Section Next Section