Given the following declaration, where is the value 77 stored in the scores array?
int scores[] = {83, 62, 77, 97, 86}
scores[0]
O
scores[1]
scores[2]
scores[3]
Answers
Answered by
0
Answer:
scores[2]
Explanation:
please mark brainlist
Answered by
1
Answer:
Profile Picture
Created by
Tags1
Key concepts:
Memory
Primitive Data Type
Memory Address
Terms in this set (80)
An array can store a group of values, but the values must be
the same data type
An array with no elements is
illegal in C++
What will the following code display?
int numbers[] = {99, 87, 66, 55, 101};
for (int i = 1; i < 4; i++)
cout << numbers[i] << " "
87 66 55
Given the following declaration, where is the value 77 stored in the scores array?
int scores[] = {83, 62, 77, 97, 86}
scores[2]
Explanation:
plz follow me
Similar questions