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