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