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