Why does my program stop writing after the first carriage return?
Why does my program stop writing after the first carriage return?
(OP)
(Fortran 77, Windows 2000)
I am trying to write to a file:
open (2, FILE='outputfile')
write(2,*) 'stuff'
write(2,*) 'more stuff'
...
write(2,*) 'yet more stuff'
The first line writes correctly. The following lines do nothing and I get no error or warning.
I tried commenting out the first line. Then the second line writes, but none after.
Any suggestions?
I am trying to write to a file:
open (2, FILE='outputfile')
write(2,*) 'stuff'
write(2,*) 'more stuff'
...
write(2,*) 'yet more stuff'
The first line writes correctly. The following lines do nothing and I get no error or warning.
I tried commenting out the first line. Then the second line writes, but none after.
Any suggestions?
RE: Why does my program stop writing after the first carriage return?
What you've shown above "appears" fine. However, you've only shown a few lines out of your code. There's no way to tell you what is going on here. Also... which compiler are you using??
Email me a copy of your code and I wil independently test it for you if you would like.
Dan
dan@dtware.com
www.dtware.com