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