In C++ how can I declare an array of strings? I tried to declare it as an array of char but that was not correct.
|
|
|||
|
|
|
That is C++, using the STL. In C, you would do it like this:
This reads as "my strings is an array of 100 pointer to char", and the latter is how strings are represented in C. |
||
|
|
|
|
I would rather recommend using a vector of strings in almost every case:
|
||
|
|
|
|
Conventional single string:
What you need is probably:
|
||
|
|
