1 2 3 4 5 6 7 8 9 10 11
struct bar { int ID; int Handle; ... }; struct foo { bar *Bar; // <- Here how do we decide whether to use pointer type or just regular type i.e bar Bar; };