$ cat > 42.c
#include <stdio.h>
#define SIX 1 + 5
#define NINE 8 + 1
int main(void)
{
printf( "What you get if you multiply six by nine: %d\n", SIX * NINE );
return 0;
}
$ gcc --pedantic -Wall -W --std=c89 -o 42 42.c
$ ./42
What you get if you multiply six by nine: 42
pertinent adj. Approprié : qui se rapporte exactement à ce dont il est question.
[^] # Re: 6*9
Posté par Krunch (courriel, site web personnel) . En réponse au journal Google, encore et toujours. Évalué à 3.
$ cat > 42.c #include <stdio.h> #define SIX 1 + 5 #define NINE 8 + 1 int main(void) { printf( "What you get if you multiply six by nine: %d\n", SIX * NINE ); return 0; } $ gcc --pedantic -Wall -W --std=c89 -o 42 42.c $ ./42 What you get if you multiply six by nine: 42pertinent adj. Approprié : qui se rapporte exactement à ce dont il est question.