+ 2
What's the practical use of array?
3 Answers
+ 3
to store data
+ 1
In fact array is one of the most important ones, representing datas and check it using loops. You know strings is also array of chars.
array : int a[5][5]
no array : int a1, a2, a3, ... , a25
Ofc you will use arrays right?
0
An array is a data structure, which can store a fixed-size collection of elements of the same data type.