10
20
30
40
50
60
70
80
90
10
11
12
012
COORD_SYS: CARTESIAN_XY
DECLARATION
int A[3][4] = {{10, 20, 30, 40},{50, 60, 70, 80},{90, 10, 11, 12}};
In C/C++, a 2D array is essentially an array of arrays. Elements are stored in contiguous memory locations, row by row.