
Array is a variable that can hold more than one value of same type. You specify which of the several values you're referring to at any given time by using a numeric subscript. (Arrays in programming are similar to vectors or matrices in mathematics.)
Arrays are of two types:
One-dimensional arrays
Multidimensional arrays
Multidimensional arrays : When we create arrays of arrays known as multidimensional arrays. C Programming provide to create multidimensional...