Array
Array is a Linear datatype and having contigous Memory allocation.It is very simple datatype in which
we can easily access any element by using their index.
Property of Array
1)Array Index start with 0.
2)We can access any element with O(n)
complexity.
3)We can fix the size of array.
4)Array having Contigous Memory Allocation.