hi, i was making a tic tac toe game with an array of strings. but every time i compiled the program to see if it would display the strings it crashed. is there a special way to use an array of strings if its at all possible?
I'm betting you accessed outside of the bounds of your array, or dereferenced a garbage pointer. And to answer your question, no, it isn't really that special.
It's just like any other array of objects, assuming that you are using an array of std::string and not an array of char*. If you want more precise assistance, post a neatly formated, complete example that demonstrates the problem and someone will look at it for you.