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