Introduction to Arrays in C++
An array isn’t a “data type” like you’d normally think of one. It is a collection of the same type of data, similar to a List in Python. Behind the scenes, there are a few things you need to know however: In an array, all elements must be of the same data type. When constructed,…