Computer Science, asked by gurinderkaur3996, 1 year ago

definiation of two dimensional array in C​

Answers

Answered by akshra2801
0

A arrey of array is known as 2D arrey. the two dimensional 2D array in programming is known as matrix. A matrix can be represented as a table of raw and columns before we discuss more about two dimensional array let's have a look at the following C programs.

Answered by MrTSR
3

Two dimensional array:

The Two Dimensional Array in C language is nothing but an Array of Arrays. If the data is linear we can use the One Dimensional Array but to work with multi-level data we have to use Multi-Dimensional Array.

Two Dimensional Array in C is the simplest form of Multi-Dimensional Array. In C Two Dimensional Array, data is stored in row and column wise. We can access the record using both the row index and column index (like an Excel File).

Similar questions