+ 1
I m not getting the cocept of array
3 ответов
+ 14
array is a collection of similarly type of data.
where u can store multiple data in a single variable. and can fetch the data using there indexes
0
A container that stores data inside your computer.
Each element in the array is a box with and index and a value(Not literally)
0
a single variable having a list of consecutive memory locations is called array. e.g a variable b[5].... it means we have reserved memory for a variable which can store upto 5 values consecutively. and we can easily access to this array of five varibles using their index.