I am trying to declare a struct that is dependent upon another struct. I want to use sizeof to be safe/pedantic.
sizeof
typedef struct _parent { floa
I am not on my development machine right now, but I think you can do one of the following:
sizeof(((parent_t *)0)->text) sizeof(((parent_t){0}).text)