Name: Anonymous 2012-01-19 12:09
Insanity: doing the same thing over and over again and expecting different results
#include <stdlib.h>
#include <stdio.h>
#include <math.h>
#define insanity rand()
int main(int argc,char *argv[])
{
printf("%f\n",insanity);
}
~ % echo -e '#include<stdlib.h>\n#include<stdio.h>\n#include<math.h>\n#define insanity rand()\nint main(int argc,char *argv[]){printf("%f\\n",insanity);}' | gcc -xc - && for i in {1..10}; ./a.out
0.000000
0.000000
0.000000
0.000000
0.000000
0.000000
0.000000
0.000000
0.000000
0.000000