Skip to content

Commit a34f8b1

Browse files
Update arrays-cpp.md
1 parent 0b679cb commit a34f8b1

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

docs/cpp/arrays-cpp.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -162,6 +162,7 @@ int i2[5][7];
162162
It specifies an array of type **`int`**, conceptually arranged in a two-dimensional matrix of five rows and seven columns, as shown in the following figure:
163163

164164
:::image type="content" source="../cpp/media/vc38rc1.gif" alt-text="Conceptual layout of a multidimensional array.":::
165+
165166
The image is a grid 7 cells wide and 5 cells high. Each cell contains the index of the cell. The first cell index is labeled 0,0. The next cell in that row is 0,1 and so on to the last cell in that row which is 0,6. The next row starts with the index 1,0. The cell after that has an index of 1,1. The last cell in that row is 1,6. This pattern repeats until the last row, which starts with the index 4,0. The the last cell in the last row has an index of 4,6.
166167
:::image-end
167168

@@ -357,4 +358,4 @@ szError1 = psz;
357358

358359
## See also
359360

360-
[`std::array`](../standard-library/array-class-stl.md)
361+
[`std::array`](../standard-library/array-class-stl.md)

0 commit comments

Comments
 (0)