Array problem help?

closed account (EApGNwbp)
What is the value of the array element at index 1 in the array below?

const int SIZE = 5;
int nums2[SIZE] = {9, 3, 6, 2, 7};

a) SIZE
b) 3
c) 9
d) 6
Last edited on
3 because the computer starts counting at 0 then goes up.
Last edited on
Topic archived. No new replies allowed.