Computer Science, asked by jaber7510, 1 year ago

What is an array? Explain two dimensional and multi-dimensional arrays in c with example?

Answers

Answered by anushridm
0

Answer:

it is a collection of similar type of elements continuously in the memory location

Explanation:

one dimensional :if the elements of the array are arranged in either in a row or in coloum

two dimensional :array if elements arrranged in both row and coloum

Answered by AKshay080129
0

Answer:

nt x[10][20]; Elements in two-dimensional arrays are commonly referred by x[i][j] where i is the row number and 'j' is the column number. A two – dimensional array can be seen as a table with 'x' rows and 'y' columns where the row number ranges from 0 to (x-1) and column number ranges from 0 to (y-1)

Explanation:             HOPE IT HELPS

Similar questions