I didn't actually understood it please can anyone explain? because I am 13 yrs old | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
+ 1

I didn't actually understood it please can anyone explain? because I am 13 yrs old

26th May 2020, 11:02 AM
Ishaan Garud
Ishaan Garud - avatar
1 Answer
+ 4
Arrays are simply a lot of variables (it may be integer,character etc) collected under a specific name. For example :- in C/C++ int arr[10] is an array of 10 variables of integer type under the name "arr" Elements of the array can be accessed using their index like this👇 arr[0] -> first element arr[1] -> second element . . . . arr[9] -> tenth or last element
26th May 2020, 11:08 AM
Arsenic
Arsenic - avatar