If I know the sizes I'm using, I can declare the array as:
char arr[20][20];
Is this correct? Well, I want to know how to insert a full string into the array of strings. I thought it might be:
fscanf(infile, "%s", *arr[i]);
but this line gave me the error "warning: format argument is not a pointer (arg 3)".