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