May 9 2025 9:14:36.844 PM LINKED_LIST: FORTRAN90 version. Demonstrate how pointers can be used to define and manipulate a linked list. TEST01 Create, one at a time, a sequence of integers. As each integer is created, insert it into a sorted list. Print the list at the end. We carry out this task using a linked list. Initial data generation: 1 161 2 806 3 2 4 463 5 768 6 378 7 915 8 102 9 593 10 794 Contents of sorted linked list: 1 3 2 2 8 102 3 1 161 4 6 378 5 4 463 6 9 593 7 5 768 8 10 794 9 2 806 10 7 915 LINKED_LIST: Normal end of execution. May 9 2025 9:14:36.845 PM