Hello,
I have a structure like this:
However, I don't want to specify how many keys I can have in the array.Code:typedef struct
{
char *name;
char keys[20][6];
} row;
Can I replace it with something like **keys and then reallocate memory when I add data ? Any suggestions how to do it ?
Best wishes,
D5

