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