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