We can iterate through an array using a pointer. Let's move through the address in the pointer to output values.

That's quite cool eh! We can dereference the pointer to get the element in the array we are pointing to.

Then by using the ++incrementing operator, we can move through the elements by increasing the pointer memory address.