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