In this lesson, you are going to explore vectors. Vectors are one of the most common list structures in C++. Vectors allow you to store multiple values in a single variable.
List structures are common in programming languages. C++ uses arrays and vectors, similar to Javaโs use of arrays and ArrayLists, respectively.
In this course, you will use vectors exclusively. While arrays do have a place in C++, this course does not explore them.