Accessing Element in Array Inside Struct Dynamically Allocated
So I have an array of structs with every struct containing a dynamic array of strings. typedef struct _test { int total; char *myarray[]; } Test; This how I allocated enough memory Test *…