+ 1
What are the benefits of arrays ?
C++
2 Respuestas
+ 7
The unknown 321 Essentially... yes.
Another way to think of arrays is as a container that holds a series of values stored in a sequential set of memory addresses.
The first memory address is assigned to the array variable. From there, the next value is stored in the adjacent memory address, followed by the next value, and so on and so forth.
+ 2
You mean that instead of creating many individual variables of the same type. You put all these variables in one type of data in a row ?