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