|
array
-
-
Collection of numbers or collection of letters representing numbers arranged in rows and columns.
One-dimensional array:
a1 a2 a3 a4Two-dimensional array:
a11 | a12 | a13 | a21 | a22 | a23 | a31 | a32 | a33 |
In computer programming, an array is an efficient method to save, retrieve, and process information.
|
|