ref: 797f25e748cafa8718533af9d9a22642f2992de9 dir: /tests/execute/0004-pointer.c/
int main() { int x; int *p; x = 4; p = &x; *p = 0; return *p; }