Consider the following code segment What will the following code-03201
Consider the following code segment. What will the following code segment display?<br>int main(){<br>int age[10] = {0};<br>cout << age;<br>}
This multiple choice question (MCQ) is related to the book/course vu cs201 Introduction to Programming. It can also be found in vu cs201 Mid Term - Quiz No.11.
Consider the following code segment. What will the following code segment display?
int main(){
int age[10] = {0};
cout << age;
}
int main(){
int age[10] = {0};
cout << age;
}
Values of all elements of array
Value of first element of array
Starting address of array
Address of last array element