-,- Am I that bad at explaining things? >.>.

Let me try and give it another crack:

Ok, I'm trying to call a value as if it were a 2d array (along thoes lines). So say I have two characters A1 and A2. I want to make a loop to save time.

So
Code:
for(x=0;x < 2; x++) {
 cout << A[x];
}
My problem is that A is not an array in any form (besides being of type character). So I'm basicaly trying to call a non array as if it were an array.

It may seem pointless to do it this way, but I have a data sheet arranged as

Si1
Si2
Db1
Db2

And with the idea above, all I need to add is a way to shift from calling Si# to Db#.



I dont know how to explain that any better >.>. Is that more clear?