1struct A
2{
3  struct B *b_ptr_in_a;
4};
5
6struct C
7{
8  struct B
9  {
10    int member_of_B_in_C;
11  };
12};
13