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