Arrays and Vectors Explanation for app.codility.com/programmers in C++
An array is a list structure that can be used to store many items in one place. In C++, the items have to be of the same type. Imagine that there is a list of items; for example, a shopping list. The ...