Basu
Basu
Basu
c ontents
02 Properties
03 Advantage and
Disadavntages
04 Declaration And
Initilization of array
05 Programs
01
Introduction:
An array is defined as the collection of similar type of data
items stored at contiguous memory locations. Arrays are the
derived data type in C programming language which can
store the primitive type of data such as int, char, double,
float, etc. It also has the capability to store the collection of
derived data types, such as pointers, structure, etc. The array
is the simplest data structure where each data element can be
randomly accessed by using its index number.
02 Properties of an Array: