Array in C programming
Array Array Array is defined as an ordered list of homogeneous data element. May be of type int, float,char or double All these element are stored in consecutive memory locations An array is described by a single name or an identifier and each element in an array is referenced by a subscript enclosed in a pair of square brackets. Arrays are of two types: One-dimensional arrays Multidimensional arrays Two dimensional array Three dimensional array Four dimensional array One Dimensional Array(1D) Arrays must be declared before they can be used in the program. The dimensionality of an array is determined by the number of subscript present in the given array. If there is only one subscript, then it is called a one-dimensional array. Syntax: type variable_name[lengt...