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