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