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