//Read file of name and year born. Print name and age #include int readfile(ifstream people,char names[][15],int years[]) { int count=0; people>>names[count]; //read first before loop! while (!people.eof() && count<20) //eof=end of file { people>>years[count]; count++; if (count<20) people>>names[count]; //read next name } //while not end of file people.close(); return count; } //readfile void printAll(char names[][15],int years[], int count) { int age; cout<<"NAME\tAGE\n"; for(int i=0; i