I am very new to c++.
Say I have this:
char arrOne[10];
char arrTwo[10];
char arrThree[10];
How can I create an array where each element in the array holds a character array like above?
The goal is to be able to call upon the index of the array of arrays to grab one of these character arrays when needed.
Keep in mind. I can ONLY use iostream.
std::stringobjects.std::stringisn't in string.h. Arrays don't have to involve pointers, either.std::arrayis as good as any other array and has nothing to do with pointers.