What does a 2 dimensional array do?

1 answer

Answer

1151878

2026-05-15 21:30

+ Follow

A two dimensional array is a one-dimensional array of one-dimensional arrays. That is, just as we can have an array of integers, we can also have an array of integer arrays. This idea can be extended such that we can have an array of two-dimensional arrays (a three-dimensional array), and so on. We typically use a two-dimensional array to represent a table of rows and columns, where each row is a one-dimensional array.

ReportLike(0ShareFavorite

Copyright © 2026 eLLeNow.com All Rights Reserved.