I'm trying to set up a structure within a structure, but there's also two dynamic arrays inside:



struct Sentence {
int numwords;
char **words;
};

struct Document {