brintos

brintos / llvm-project-archived public Read only

0
0
Text · 116 B · faea771 Raw
14 lines · c
1 2int bad_guy(int * i)3{4    *i = 9;5    return *i;6}7 8void bad_guy_test()9{10    int * ptr = 0;11 12    bad_guy(ptr);13}14