Quote:

How many spartans were still left when 252 had died ?


48

Quote:

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

int main(void)
{
int value = SIX * NINE;
printf("Answer = %d\n", value);
return 0;
}
The code outputs 42!!!!!!!!!!!!!!!!!


wow it does... why on earth does it do that? and how did you figure that out?

julz

EDIT: oh i get it! SIX * NINE = 1 + 5 * 8 + 1 = 40 + 2 = 42

Last edited by JulzMighty; 06/21/07 00:29.

Formerly known as JulzMighty.
I made KarBOOM!