Skip to content

Commit

Permalink
add crash demo file
Browse files Browse the repository at this point in the history
  • Loading branch information
yashinomi committed Oct 16, 2020
1 parent bc907ec commit fdf6e30
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions debug_test_codes/out_boounds_array.c
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
#include <stdio.h>

int main (void){
int arr[] = {0, 1, 2, 3};
printf("%d\n", arr[3]);
printf("%d\n", arr[4]);
return 0;
}

0 comments on commit fdf6e30

Please sign in to comment.