Arrays in C
Array is a data type like int, float, char, double etc. Note that int, float, char, double data types can store only one item of data. But array can store set of values (data items). Array stores same kind of data. It is important to note that array stores similar kind of data.
Example: suppose we want to store roll numbers of all the students. Remember that roll number cannot be float. Roll…
View On WordPress















