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 }