Save
...
Computer Programming 2
Week 2 to 3 C++ Programming Fundamentals Review
Arrays
Save
Share
Learn
Content
Leaderboard
Share
Learn
Created by
Marc
Visit profile
Cards (6)
An
array
is a collection of elements of the same data type, stored in contiguous memory locations.
An array is a collection of elements of the
same data type
, stored in
contiguous
memory locations.
An array is a
collection of elements
of the same data type, stored in contiguous memory locations.
Array type:
One-dimensional
data_type array_name[size];
Two-dimensional
data_type array_name[rsize][csize];
Array type:
One-dimensional data_type array_name[
size
];
Two-dimensional data_type array_name[
rsize
][
csize
];
This is an example of?
Array