Mar 28, 2013 at 1:47am
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 Mar 28, 2013 at 1:47am
Mar 28, 2013 at 2:12am
3 because the computer starts counting at 0 then goes up.
Last edited on Mar 28, 2013 at 2:25am