cplusplus
.com
TUTORIALS
REFERENCE
ARTICLES
FORUM
C++
Tutorials
Reference
Articles
Forum
Forum
Beginners
Windows Programming
UNIX/Linux Programming
General C++ Programming
Lounge
Jobs
Forum
Beginners
Array problem help?
Array problem help?
Mar 28, 2013 at 1:47am UTC
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
Mar 28, 2013 at 1:47am UTC
Mar 28, 2013 at 2:12am UTC
Ch1156
(1999)
3 because the computer starts counting at 0 then goes up.
Last edited on
Mar 28, 2013 at 2:25am UTC
Topic archived. No new replies allowed.