I have a program in Fortran that saves the results to a
file. At the moment I open the file using
OPEN (1, FILE = 'Output.TXT')
However, I now want to run a loop, and save the results of
each iteration to the files 'Output1.TXT', 'Output2.TXT', 'Output3.txt', ...
Is there an easy way in Fortran to constuct filenames from
the loop counter i?
you can write to a unit, but you can also write to a string
program foo
end program
Please note (this is the second trick I was talking about) that you can also build a format string programmatically.
program foo