Hello everyone,
Can anybody tell me how 2D arrays are internally stored in java i.e in row major form or column major form?
OR
In other words if I create a 2d array say:
int a[][] = new int[6][10];
then what does a[0] represents, a single row or a single column?
And is it possible to do it other way around?
Thanks in advance