+ 1
Can someone please explain the concept of arry in detail it is quite confusing????
3 Answers
+ 1
thnx
0
It's an indexed list of elements of the same time.
If you have an array of integers, you have a list of integers that can be accessed by the array's index.
C example:
int array [5];
array = {1, 3, 2, 4, 0}
if you print array[0], you will output 1, the integer value stored on the index 0 of the array.If you print array[1], you output 3.
If you print array[2], you will output 2 and so on