228k views
5 votes
To access an array element, use the array name and the element's ______.

User Pndc
by
6.6k points

1 Answer

3 votes
index. E.g. if the array x is { 5,6,7,8 } the second element would be x[1] containing 6. Index is zero-based.
User Nitech
by
6.7k points