[Basic C++] 08 - n-Dimensional Array in C++
2020. 5. 16.
In this post, I am going to talk about an n-dimensional array in C++. The bottom line of an array in C++ is not as simple as a Python array, however, it's very important to under how the array works in C++ in various programming techniques. Table of contents 1. one-dimensional array 2. two-dimensional array 1. one-dimensional array n-dimensional array literally means an array with n dimensions. ..