17.13 — Multidimensional std::array
In the prior lesson (), we discussed C-style multidimensional arrays. // C-style 2d array int arr[3][4] { { 1, 2, 3, 4 }, { 5, 6, 7, 8 }, { 9, 10, 11, 12 }}; But as you’re aware, we generally want to avoid C-style arrays (unless they are being …