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