View Single Post
Old 09-01-2009, 07:33 AM   #776
AlumiuN
Vodka-Induced Entertainment
 
AlumiuN's Avatar

 
Join Date: Jan 2008
Location: Christchurch, New Zealand
Posts: 1,044
Default

... if I spell it backwards and execute teh following code:

#include <string.h>
#include <stdio.h>

int main(void) {
char *str = "a";
strcat (str, "live");
printf ("I am %s", str);
exit(1);
return 0;
}

Teh is evil if...
__________________


Lies are for those who cannot handle the truth, but truth is for those who cannot handle the lies.
AlumiuN is offline                         Send a private message to AlumiuN
Reply With Quote