C:\Documents and Settings\adamses\Desktop\Fall 07 CS 430\SecondPascal\SecondPasc al_ganeycp_input>pa4 Record Collection Program This program will read Records from an input text file and store them in a linked list. Then it will sort the records based on averages in descending order. Finally, the sorted records will be written to an output file. Please enter the name of your input file and hit return: infile.txt Please enter the name of your output file and hit return: out.txt Reading/Adding the following record to the linked list: Mata-Toledo 49 78.20 The linked list in descending order by GPA average: Mata-Toledo 49 78.20 Reading/Adding the following record to the linked list: Abzug 21 82.15 The linked list in descending order by GPA average: Abzug 21 82.15 Mata-Toledo 49 78.20 Reading/Adding the following record to the linked list: Bernstein 900 38.23 The linked list in descending order by GPA average: Abzug 21 82.15 Mata-Toledo 49 78.20 Bernstein 900 38.23 Reading/Adding the following record to the linked list: Norton 20 71.52 The linked list in descending order by GPA average: Abzug 21 82.15 Mata-Toledo 49 78.20 Norton 20 71.52 Bernstein 900 38.23 Reading/Adding the following record to the linked list: Tjaden 3 75.78 The linked list in descending order by GPA average: Abzug 21 82.15 Mata-Toledo 49 78.20 Tjaden 3 75.78 Norton 20 71.52 Bernstein 900 38.23 Reading/Adding the following record to the linked list: Adams 75 98.50 The linked list in descending order by GPA average: Adams 75 98.50 Abzug 21 82.15 Mata-Toledo 49 78.20 Tjaden 3 75.78 Norton 20 71.52 Bernstein 900 38.23 Reading/Adding the following record to the linked list: Lane 35 87.60 The linked list in descending order by GPA average: Adams 75 98.50 Lane 35 87.60 Abzug 21 82.15 Mata-Toledo 49 78.20 Tjaden 3 75.78 Norton 20 71.52 Bernstein 900 38.23 The name of your input file was infile.txt The name of your output file was out.txt This program has ended normally. C:\Documents and Settings\adamses\Desktop\Fall 07 CS 430\SecondPascal\SecondPasc al_ganeycp_input>