#include struct B; struct A { B* b; int num = 4; A() { b = new B(this); } }; struct A; struct B { A* a; int nu