Is it possible to declare something like
string blah[51]
The way I would assume this would function is that each elements of the blah array would be a string, or is this not possible?
Thanks
Edit: just tried this in dev c++, and it didn't give me any errors, but well it bite me in the ass later if i try to apply it?
ex: cout << blah[23];
console output: What ever characters i stored in 23rd slot.