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