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