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