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