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