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