Posted by tendiamonds on 2006-03-13 18:33:01 +0000
Computer Programmers' Joke
#include <stdio.h>
#define SIX 1 + 5
#define NINE 8 + 1
int main(void)
{
printf( "What do you get if you multiply %d by %d? %d\n", SIX, NINE, SIX * NINE);
return 0;
}
Posted by tgl on 2006-03-13 19:16:49 +0000
Good one.
1 + 5 * 8 + 1 !!
Posted by bizquig3000 on 2006-03-15 16:56:47 +0000
It's jokes like these that aided my decision to drop out of a computer science major back at UNH.