0
What is array with suitable example??
4 Respuestas
+ 2
Collection of same data type of variables that has a sequential memory address in ram and starting index from 0.
+ 1
Collection Of Elements In Java
+ 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...
0
int arr[];