Apr 29
why? the answer…
Topic: code|The Answer to Life, the Universe, and Everything is 42.
SIX * NINE = 42
#include “stdio .h”
#define SIX 1 + 5
#define NINE 8 + 1
int main(void)
{
printf( “What you get if you multiply six by nine: %dn”, SIX * NINE );
return 0;
}
![]()