ref: c1b398e087ec3d8063c8358ba4a46b244091a1fa dir: /tests/0020-ptrptr.c/
int main() { int x, *p, **pp; x = 0; p = &x; pp = &p; return **pp; }