Choose the correct answer.

Consider the following code segment. What will the following code segment display?
1
2
3
4
int main(){
int age[10] = {0};
cout << age ;
}


(a) Values of all elements of array
(b) Value of first element of array
(c) Starting address of array
(d) Address of last array element
Topic archived. No new replies allowed.