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