An Array is a container that can hold a fixed number of items and these items should be of the same type. Most of the data structures use arrays to implement their algorithms.
Following are the important terms to understand the concept of Array.
As per the above illustration, the following are the important points to be considered.
#include<stdio.h>
void main(){
int array [10] = {5,8,4,6,75,12,32,11,46,3};
}
Following are the basic operations supported by an array.