Answer to life the universe and everything = 42
Ask Google
#include <stdio.h>
#define SIX 1 + 5
#define NINE 8 + 1
int main(void)
{
printf( "The meaning of life: %d\n", SIX * NINE );
return 0;
}
Output:
The meaning of life: 42