Created
March 12, 2009 07:45
-
-
Save mattn/77952 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#include <stdio.h> | |
#include <stdlib.h> | |
void dan_the_over_flow(void) { | |
printf("dan the over flow!\n"); | |
// ウヒヒなコード | |
exit(0); | |
} | |
void func(void) { | |
int a[1], i; | |
for ( i = 0 ; i < 5; i++ ) a[i] = (int)dan_the_over_flow; | |
} | |
int main(void) { | |
func(); | |
return 0; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment