brintos

brintos / llvm-project-archived public Read only

0
0
Text · 145 B · a9143a5 Raw
10 lines · c
1#include <string.h>2int main() {3  int c[2048];4  memset(c, 0, 2048 * sizeof(int));5 6  c[2047] = 0xfeed;7 8  return c[2047]; // breakpoint here9}10