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