What is array with suitable example?? | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
0

What is array with suitable example??

27th Nov 2016, 8:26 AM
Aniket Deshmukh
4 Answers
+ 2
Collection of same data type of variables that has a sequential memory address in ram and starting index from 0.
27th Nov 2016, 8:39 AM
Aditya kumar pandey
Aditya kumar pandey - avatar
+ 1
Collection Of Elements In Java
27th Nov 2016, 8:30 AM
ERFIRE
ERFIRE - avatar
+ 1
arrays: collection of various things(variables) of same data type is called array eg:int arr[100]; it stores 100 things(variables) of data type int. the reference index to the 1st element is 0,2nd element is 1 and so on...
27th Nov 2016, 6:28 PM
Abdul Sattar Mapara
0
int arr[];
27th Nov 2016, 8:31 AM
ERFIRE
ERFIRE - avatar