Please help with my error??

Jun 23, 2013 at 10:54pm

[/code]
Last edited on Jun 23, 2013 at 11:42pm
Jun 23, 2013 at 11:38pm
I do not see any problem with your code. Insert an additional statement in function displayStrings that to see where the first output of the list of names is ended and the second output of the list of names is started.

void displayStrings( char array[][SIZE], int size )
{
for( int index = 0; index < size; index++ )
cout << array[index] << endl;
cout << endl;
}
Last edited on Jun 23, 2013 at 11:38pm
Topic archived. No new replies allowed.