adding String to 2D array

Hey, im working on a little program to record player stats and names. Basically im new to C++ and i have no idea how to put a string into a dynamic two dimensional array array (id prefer if i didn't have to convert any numbers to strings but that seems unlikely).

I tried googleing the issue but every tutorial either only focuses on numbers or text never worked with both (that i could understand).

BTW, if there is a tutorial that i missed that explains this id love the link :D
I would suggest you use a std::vector (or a similar container) of classes/structs:

http://www.cplusplus.com/reference/stl/vector/
http://www.cplusplus.com/doc/tutorial/classes/
hmm, haven't worked with either (im really new), thanks for the info
Topic archived. No new replies allowed.