Changed the wording for the elements in an array. (#21729)

It was confusing before. Mentioned elements that didn't exist. Maybe meant indexes?
This commit is contained in:
jacheg
2018-11-05 01:13:33 -08:00
committed by Manish Giri
parent dd03af6947
commit 62bf5ad17d

View File

@ -45,7 +45,7 @@ Here you have created an `array` of `ints`(Integers), called `arr`. This array h
```C ```C
datatype name[number of elements] datatype name[number of elements]
``` ```
The first element of this array is `1`, the second is `2` etc. The elements in this array are whatever values you choose to store. The values stored will replace the "number of elements" section.
```C ```C
int brr[] = {78, 65}; int brr[] = {78, 65};