Share via


Ordering of C++ Arrays

 

The latest version of this topic can be found at Ordering of C++ Arrays.

C++ arrays are stored in row-major order. Row-major order means the last subscript varies the fastest.

See Also

Arrays