Definition: An array is defined as a collection of items stored at contiguous memory locations under the same name
Ex: int (a,b,c,d,e )can be grouped in a single variable as int a[5]: now five continuous memory location are assigned with the same name ‘a’.
Instead of creating separate variables to store data, it is an efficient organization to store data in a single variable called array