Two Dimensional Array in C
The two-dimensional array can be defined as an array of arrays.A two-dimensional array can be used to represent a matrix, a table or board games (Sudoku). The row and column positions are given as successive indices. When you declare a variable of such an array, use a pair of square brackets for each dimension. Declaration […]
Two Dimensional Array in C Read More »
