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