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