aboutsummaryrefslogtreecommitdiff
path: root/slides/2018-software-security/sample/bad-index.c
blob: 37d94b30ebdfe51d72e65743a80eb0e555aaf880 (plain)
1
2
3
4
char b[4] = "abc";
b[3] = 'd';
printf("b: %s\n", b);
...