Question: void diplayNames(name array[], int size) { for (int i = 0; i < 5; i++) { cout < < array[i].num < < . < <

void diplayNames(name array[], int size) { for (int i = 0; i < 5; i++) { cout << array[i].num << "." << array[i].name << endl; } cout << "Press ENTER to see the last five names" << endl; cin.get(); for (int i = 5; i < 10; i++) { cout << array[i].num << "." << array[i].name << endl; } }

Can someone tell me why this isn't printing 5 names, then asking the user to select "Enter" then printing 5 more names? c++

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!