Computer Science, asked by hrithik23, 11 months ago

explain two dimensional array with example

Answers

Answered by AzzyLand
4

Hi my dear friend,

Two dimensional array example

Two dimensional (2D) arrays in C programming with example. An array of arrays is known as 2D array. The two dimensional (2D) array in C programming is also known as matrix. A matrix can be represented as a table of rows and columns.

~Thank you

Answered by sonabrainly
2

An array keeps track of multiple pieces of information in linear order, a one-dimensional list. However, the data associated with certain systems (a digital image, a board game, etc.) lives in two dimensions. To visualize this data, we need a multi-dimensional data structure, that is, a multi-dimensional array. A two-dimensional array is really nothing more than an array of arrays (a three-dimensional array is an array of arrays of arrays). Think of your dinner. You could have a one-dimensional list of everything you eat:

Similar questions