Array
An array is a collection of similar data type which occupies
continuous location on memory. Array is useful bulk process is required on
similar data type. Name of array is a constant pointer which point first
element of array. Elements of array are access through index number. Index
donates numeric position of data in an array. Index start with zero and last
element less than one from the specified size of array.
Syntaxt :
Data_type arr_name[size_int]