Arrays in C programming
An array is a group (or collection) of same data types. For example an int array holds the elements of int types while a float array holds the elements of float types. How to declare Array in C int num[35]; /* An integer array of 35 elements */ char ch[10]; /* An array of characters … Read more