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