We are running a survey to help us improve the experience for all of our members. If you see the survey appear, please take the time to tell us about your experience if you can.
Structs can easily have circular references:
struct ATag { struct BTag* pB; }; struct BTag { struct ATag* pA; };
typedef struct { BType* pB; } AType; //??? typedef struct { AType* pA; } BType;