An array is a collection of elements of similar data type stored at the contiguous memory location.
Array elements can be accessed using an index.
Array index starts from 0
to N-1
(where N is the size of array).
Arrays can be categorized into two categories:
Syntax to declare an array
data_type array_name[array_size];