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