Computer Science, asked by himanshin5178, 1 year ago

Methods of represent two dimensional array in memory c++

Answers

Answered by aneesabanu449
0

Answer:

two dimensional array

Explanation:

an array having two subscripts is called two dimensional array.one subscript denotes rows and other subscript denotes columns.

declaration:

datatype arrayname [row size][column size];

ex:int a[3][5];

initialization: it can be done w row by row.

ex: program to print the elements of 2d array.

Similar questions