๐ Arrays in C
1. What is an Array?
An array is a collection of elements of the same data type stored in contiguous memory locations.
Instead of declaring many variables, we can group them together.
๐ Example:Instead of writing
int marks1, marks2, marks3, mark...
yesamitsingh.hashnode.dev3 min read