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