Skip to content

Instantly share code, notes, and snippets.

@mattn
Created March 12, 2009 07:45
Show Gist options
  • Save mattn/77952 to your computer and use it in GitHub Desktop.
Save mattn/77952 to your computer and use it in GitHub Desktop.
#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