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