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