[ create a new paste ] login | about

Link: http://codepad.org/ZF96NwaF    [ raw code | output | fork ]

C, pasted on Feb 6:
1
2
3
4
5
6
7
8
9
10
11
#include <stdio.h>

#define SIX 1 + 5
#define NINE 8 + 1

int main()
{
  printf("The meaning of life: %d", SIX * NINE);

  return 0;
}


Output:
1
The meaning of life: 42


Create a new paste based on this one


Comments: