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
You can use a preprocessor directive for size as:
#define TEXT_MAX_SIZE 255
and use it in both parent and child.