Arrays
Learn how to define and access arrays and why it’s important to know how arrays are implemented in C.
We'll cover the following...
We'll cover the following...
An array in C is a set of items that are stored in consecutive memory locations. So far we have seen how we can use a variable to store a single value. Arrays are useful as they allow us to deal with a collection of values using a single variable.