Question: Given the following declaration, which for loop does not cause an array out of bounds error: string names [ 2 0 ] ; Question 7

Given the following declaration, which for loop does not cause an array out of bounds error:
string names[20];
Question 7 options:
for (int i =0; i <=20; i++)
cout << names[i]<< endl;
for (int i =0; i <20; i++)
cout << names[i]<< endl;
for (int i =1; i <=20; i++)
cout << names[i]<< endl;

Step by Step Solution

There are 3 Steps involved in it

1 Expert Approved Answer
Step: 1 Unlock blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Databases Questions!