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