This program reads in an input and output file name and then creates a record wtith the input data and sorts it in ascending order followed by outputing all of the records to the output file specified Enter the input file path: G:\input.txt Enter the output file path: G:\output.txt The record being inserted: Janikowski 23 1.30 The current records in the linked list: Janikowski 23 1.30 The record being inserted: Lane 22 2.90 The current records in the linked list: Janikowski 23 1.30 Lane 22 2.90 The record being inserted: Zelda 25 1.40 The current records in the linked list: Janikowski 23 1.30 Lane 22 2.90 Zelda 25 1.40 The record being inserted: Murdock 34 5.87 The current records in the linked list: Janikowski 23 1.30 Lane 22 2.90 Zelda 25 1.40 Murdock 34 5.87 The record being inserted: Mayonaise 56 1.40 The current records in the linked list: Janikowski 23 1.30 Lane 22 2.90 Zelda 25 1.40 Murdock 34 5.87 Mayonaise 56 1.40 The record being inserted: Landry 21 1.60 The current records in the linked list: Janikowski 23 1.30 Lane 22 2.90 Zelda 25 1.40 Murdock 34 5.87 Mayonaise 56 1.40 Landry 21 1.60 The record being inserted: Largo 56 3.40 The current records in the linked list: Janikowski 23 1.30 Lane 22 2.90 Zelda 25 1.40 Murdock 34 5.87 Mayonaise 56 1.40 Landry 21 1.60 Largo 56 3.40 The record being inserted: Silva 21 1.90 The current records in the linked list: Janikowski 23 1.30 Lane 22 2.90 Zelda 25 1.40 Murdock 34 5.87 Mayonaise 56 1.40 Landry 21 1.60 Largo 56 3.40 Silva 21 1.90 The record being inserted: Anderson 56 3.96 The current records in the linked list: Janikowski 23 1.30 Lane 22 2.90 Zelda 25 1.40 Murdock 34 5.87 Mayonaise 56 1.40 Landry 21 1.60 Largo 56 3.40 Silva 21 1.90 Anderson 56 3.96 The record being inserted: Bernard 21 4.56 The current records in the linked list: Janikowski 23 1.30 Lane 22 2.90 Zelda 25 1.40 Murdock 34 5.87 Mayonaise 56 1.40 Landry 21 1.60 Largo 56 3.40 Silva 21 1.90 Anderson 56 3.96 Bernard 21 4.56 The record being inserted: Nall 21 2.11 The current records in the linked list: Janikowski 23 1.30 Lane 22 2.90 Zelda 25 1.40 Murdock 34 5.87 Mayonaise 56 1.40 Landry 21 1.60 Largo 56 3.40 Silva 21 1.90 Anderson 56 3.96 Bernard 21 4.56 Nall 21 2.11 The input file used was: G:\input.txt The output file used was; G:\output.txt The program has exited normally