Often in programming we need to store values of similar data type, to do so we might require multiple variable declarations and that would be tedious to deal with.
To ease this task, we can take help of Arrays.
An Array is a collection of similar type of values or similar Data Types.
Data is stored in continuous memory locations.
These values can be referred by single variable and the index number (position number).
The index number always starts with ZERO.
To access the elements of array we use FOR loop.
In C Language we have:
...