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.
struct A { . . . }; struct B { struct A xdata *structA; . . . }; void test(struct B xdata *structB) { struct A xdata *structA = structB->structA; } structA is a pointer to xdata. structB->structA becomes a generic pointer which i think is wrong. Does anyone know why?