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