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