Arrays | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
+ 2

Arrays

can someone pls explain arrays in layman's terms 4 me

27th Jun 2017, 11:44 PM
Taiwo Seun
Taiwo Seun - avatar
1 Answer
+ 3
so here I'll explain you in very simple lay man language . array is actually a collection of different numbers ,string or characterers . These are mainly considered of 3 types :- one dimension array , two dimension array and multidimensional array . These are represented as :- // Single dimension arr[]={1,2,3,4}; or arr[]={'a','b','c','d'} or even a string //Two dimension array arr[][]={{1,2,3,4},{2,3,4,5}} or you can enter even a string or character //multidimensional array arr[][][]={{1,2,3,4},{2,3,4,5},{3,4,5,6}} and the values can take any value like string or character . to know how are these used see my post . https://www.sololearn.com/discuss/494416/?ref=app
28th Jun 2017, 12:51 AM
RZK 022
RZK 022 - avatar