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
Use a preprocessor directive, i.e. #define:
#define TEXT_LEN 255 typedef struct _parent { float calc ; char text[TEXT_LEN] ; int used ; } parent_t ; typedef struct _child { char flag ; char text[TEXT_LEN] ; int used ; } child_t ;