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