In this video, we will talk about how to use Arrays in C++.
Note that an Array is not as versatile as its Python counterpart, the list. Once an Array is created, the number of elements cannot be changed. The solution is the Vector, although it is better to use an Array if adding or removing elements does not matter, since an Array is faster.
#arrays_in_c++