0
How does a multiple array works ???
more than one array and combining them !!!
4 Respuestas
+ 3
A multiple array could be composed by more than one index.
In the fact there are not limit in defining the number of indexes but complex indexed arrays would be hard to use..
+ 2
first you go through the codes in my profile as an example, if you couldn't understand what and how the codes do, we can discuss it later here.
+ 1
تعليم حبطياكة الصوف
+ 1
int x[2][3] = {{1,2,3},{4,5,6}};
this is the example of multiple arrays say 2d.
as if you type:
cout<<x[0][2];
this will give out put = 3:
as in multiple arrays data is chose from 2d matrix:
i think that this would be helpfull