Array is collection of more than one data at same location of same type. Syntax: data type name[size]; This will create memory of specified size-data. For example, an array containing 4 integer values of type int called rn could be represented as: int rn[4]; 3 2 1 0 In array memory always start from 0. Initializing arrays By default, […]