/*********************************************************** Copyright 2003 Rick Miller - Pulp Free Press This source code accompanies the text C++ For Artists and is provided for instructional purposes only. No warranty concerning the quality of the code is expressed or implied. You are free to use this code in your programs so long as this copyright notice is included in its entirety. **********************************************************/ #include using namespace std; #include "person.h" int main(){ /******************************** variables *******************************/ bool keep_going = true; int number = 0; char fname[30]; char mname[30]; char lname[30]; Person **people; /******************************* get number of people to enter ******************************/ cout<<"Enter number of people: "; cin>>number; cout<>fname; cout<<"Enter middle name: "; cin>>mname; cout<<"Enter last name: "; cin>>lname; cout<>(*people[i]); infile.close(); /****************************** print people to screen *****************************/ for(int i=0; igetFirstName()<<" is younger than "<getFirstName()<getFirstName()<<" is younger than "<getFirstName()<