1.)
Consider the following array definition:
int values[ 5] = { 4, 7, 6, 8, 2 };
What does the following statement display?
cout << values[ 4] << endl;
1 answer
2 (on its own line)
Consider the following array definition:
int values[ 5] = { 4, 7, 6, 8, 2 };
What does the following statement display?
cout << values[ 4] << endl;
1 answer