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