91-9990449935 0120-4256464 |
Two Dimensional Array in CThe two dimensional array in C language is represented in the form of rows and columns, also known as matrix. It is also known as array of arrays or list of arrays. The two dimensional, three dimensional or other dimensional arrays are also known as multidimensional arrays. Declaration of two dimensional Array in CWe can declare an array in the c language in the following way. A simple example to declare two dimensional array is given below. Here, 4 is the row number and 3 is the column number. Initialization of 2D Array in CA way to initialize the two dimensional array at the time of declaration is given below. Two dimensional array example in COutputarr[0][0] = 1 arr[0][1] = 2 arr[0][2] = 3 arr[1][0] = 2 arr[1][1] = 3 arr[1][2] = 4 arr[2][0] = 3 arr[2][1] = 4 arr[2][2] = 5 arr[3][0] = 4 arr[3][1] = 5 arr[3][2] = 6
Next TopicPassing Array to Function
|