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