If I made a string array, would each number in the array hold a different string or character? I know a character array holds a string, so I'm not talking about that. I'm talking about a string array.
Printable View
If I made a string array, would each number in the array hold a different string or character? I know a character array holds a string, so I'm not talking about that. I'm talking about a string array.
Yes, you can have an array of strings, and each index would resolve to a string within that array. I'd imagine doing a quick search of these forums would yield several examples.
Thanks.