Array in C Language

Suppose you have a task to store 100 numbers, then what you will do. You will declare 100 variables and 100 input statements to store values. Instead of this, there is another option, declare an Array of 100 sizes. An array is a collection of more than one elements under one variable name. In this…

Read More ยป