Computer Science, asked by priyabujji93151, 10 months ago

Define row major order and column major order. Give access functions for both of these arrangements for two-dimensional arrays?

Answers

Answered by harshdayalgaming
1

Answer:

The difference between the orders lies in which elements of an array are contiguous in memory. In row-major order, the consecutive elements of a row reside next to each other, whereas the same holds true for consecutive elements of a column in column-major order.

Explanation:

Similar questions