Array and its type, explanation and example
An array is a collection of similar types of data (like int, float, or char), which is stored in contiguous memory locations. We can define an array in C as int arr[50]; It means an array arr that has the capacity to hold 50 integers. The benefits of an array are, now we don’t need … Read more