Hi, I'm trying to create an array of arrays (Data_Switch_Array). I increased the number of Dimensions to 2. When I access an array, I would in other languages state Data_Switch_Array[i] where i is just some number. However, I can't seem to do this.
I was thinking about making an array of containers, however, I may need to manipulate the array later.
for all Data_Switch_Array[i]
Data_Switch_Array[i][0] = new data; \
Therefore I don't think containers would be appropriate since I need to have the name as general as possible.
What can I do?
Thanks ahead,
Kat