This is helpful. What I am trying to do is create an array of array of char, to hold a list of text strings. For example…
"Dogs drool"
"Cats rule"
"Hamsters sleep"
"Lizards leap"
Then I want to be able to search through this list for a match. For the first part, I would define the array of char arrays as…
char* myList[4][15]
(or should the dimensions be reversed?)
?
dj