Recall that in C, a string is a NULL-terminated array of characters. Therefore, if we wanted to store multiple strings in an array, we’d need an array of strings, which is an array of arrays! This is also called a two-dimensional array.
Here, name is the name of the array, NRECS the number of strings to store, and STRLEN a bound on the length of the strings to be stored (remember to leave room for the NULL-terminator).