For example I have these int
s value.
int map1[10][10] = //;
int map2[10][10] = //;
int map3[10][10] = //;
int map4[10][10] = //;
int map5[10][10] = //;
for (int i = 1 ; i < 6 ; i++)
map{i}[2][2] = 3;
The above code just for illustration/understanding, I know it is wrong. How can I select/access my int
s ?