Quote:
Originally Posted by lagbeast
Ok, so what i got from that is that u cant have an array of strings in an array. You can just have an array of chars that make a string? how the hell do you do when u want to have an array of strings then? Ive been searching for an article about vectors but with no luck. Are vectors the answer?
|
You can have a multidimensional array.
Code:
new array_1d[64]
new array_2d[64][64]
new array_3d[64][64][64]