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