Array in C
Array in C:-
Array in C is a variable which can hold more than one similar types of element .It is sequential in nature.
Array index starts from zero which is known as lower boundary of an array .
Array upper boundary is (Array size-1) .
To access each element of array called traversing of array .
The main objective of an array to create a list.
There are two types of array :-
Single…
View On WordPress













