1 2 3 4 5 6 7 8 9 10 11
int main() { struct S { struct S *p; int x; } s; s.x = 0; s.p = &s; return s.p->p->p->p->p->x; }