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