STARTING PROGRAM This program reads a given file of Student Records and sorts and prints them to the screen and an output file. A Student Record includes Last name, age, and G A. Please enter the input file name (Ex. file.txt): input.txt Please enter the output file name (Ex. file.txt): output.txt The input file is: input.txt The output file is: output.txt Reading in from input.txt: Gil 22 3.40 Current contents of linked list: Gil 22 3.40 Reading in from input.txt: Roman 20 3.50 Current contents of linked list: Roman 20 3.50 Gil 22 3.40 Reading in from input.txt: Dimm 40 3.60 Current contents of linked list: Roman 20 3.50 Dimm 40 3.60 Gil 22 3.40 Reading in from input.txt: Zebra 40 3.40 Current contents of linked list: Dimm 40 3.60 Roman 20 3.50 Gil 22 3.40 Zebra 40 3.40 Reading in from input.txt: Apple 54 2.30 Current contents of linked list: Dimm 40 3.60 Roman 20 3.50 Gil 22 3.40 Zebra 40 3.40 Apple 54 2.30 Reading in from input.txt: Test 43 4.50 Current contents of linked list: Dimm 40 3.60 Roman 20 3.50 Gil 22 3.40 Zebra 40 3.40 Test 43 4.50 Apple 54 2.30 Reading in from input.txt: Smith 21 1.20 Current contents of linked list: Dimm 40 3.60 Roman 20 3.50 Gil 22 3.40 Test 43 4.50 Zebra 40 3.40 Apple 54 2.30 Smith 21 1.20 Reading in from input.txt: Mason 23 3.20 Current contents of linked list: Dimm 40 3.60 Roman 20 3.50 Test 43 4.50 Gil 22 3.40 Zebra 40 3.40 Apple 54 2.30 Mason 23 3.20 Smith 21 1.20 Reading in from input.txt: Manson 45 1.20 Current contents of linked list: Dimm 40 3.60 Test 43 4.50 Roman 20 3.50 Gil 22 3.40 Zebra 40 3.40 Mason 23 3.20 Apple 54 2.30 Smith 21 1.20 Manson 45 1.20 Just a reminder that: The input file is: input.txt The output file is: output.txt END OF PROGRAM