As input data I have a file containing 100 lines. On each line I have a number followed by dot. I need to print into another file the sorted numbers increasingly.
I know reading from a file and printing into a file with see and tell but when it comes to going through all of them from 1 to 100, without doing a read(X),read(Y) etc. for each line in the see() I am lost. So how would you approach this problem?