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