Yes, 6 x 9 = 42
#define NINE 8 + 1
#define SIX 1 + 5
int main(void) {
printf("%d times %d is %d\n", SIX, NINE, SIX * NINE);
return 0;
}
3 comments
Comments
-
And it’s interesting to note that multiplication is not commutative anymore: 6 times 9 is 14
-
define NINE (8 + 1)
It’s a good practice.
-
Xavier: ehm, sure, but if you didn’t read the book: http://fr.wikipedia.org/wiki/La_Grande_Question_sur_la_Vie,_l’Univers_et_le_Reste