cours/content/secu_logicielle/td7-analyse_statique_dynamique/files/q5/test-overrun-stack.c
2023-05-09 21:57:14 +02:00

10 lines
112 B
C

#include <stdlib.h>
#include <stdio.h>
int main(void) {
char c[10];
c[10] = 1;
c[-1] = 1;
return c[10];
}