Two-Dimensional Array in C
The array which is used to represent and store data in a tabular form is called as Two Dimensional Array. Such type of array specially used to represent data in a matrix form. To declare Two Dimensional Array in C, the general syntax is as follows: <data-type> <Array-name> [<rows>][<columns>]; The rows and columns, both must … Read more