Tag: Use of Array

ARRAY in C Language

ARRAY in C Language: (1) An Array is a collection of variables of the same type that are referenced by a common name. It is used for storing multiple values in one variable. (2) Sample C language code and its output, as shown: #include <stdio.h>#include <conio.h>//Assign 1-10 values in one variable x container having array of …