Hello
I am getting the following message after running the code:
forrt1: severe (24): end-of-file during read...
What does this mean?
Basically, I'd like to sort the following column of numbers into an order based on their indices:
Example:
12
3
8
The index order is:
3
2
1
So, the expected output is:
8
3
12
What I am getting in the output file is:
12
Please could anyone help?
Thank you.