17.7 — Introduction to C-style arrays
Now that we’ve covered std::vector and std::array, we’ll complete our coverage of arrays by covering the last array type: C-style arrays. As mentioned in lesson , C-style arrays were inherited from the C language, and are built-in to the core language of C++ (unlike the rest of the array types, …