eleteroboltz
Technical User
I'm using Intel Visual Fortran 11.1 x64 with Microsoft Visual Studio 2008.
I'm having a simple issue that I cannot solve.
When I write a lot of things in a single write(*,*), it just break the output line at certain point.
For Example, when I write the code:
write(11,*) 'aaaaaaaaa ','aaaaaaaaa ','aaaaaaaaa ', 'aaaaaaaaa ',&
& 'aaaaaaaaa ', 'aaaaaaaaa ', 'aaaaaaaaa ', 'aaaaaaaaa ',&
& 'aaaaaaaaa' ,'aaaaaaaaa ', 'aaaaaaaaa'
The output file 'fort.11' is with 2 lines instead of one continuous line.
aaaaaaaaa aaaaaaaaa aaaaaaaaa aaaaaaaaa aaaaaaaaa aaaaaaaaa
aaaaaaaaa aaaaaaaaa aaaaaaaaa aaaaaaaaa aaaaaaaaa
I don't remember this happening with other compilers that I used in the past.
Does any one know how to fix this problem???
This is crucial for making output data tables.
Thanks in advance.
I'm having a simple issue that I cannot solve.
When I write a lot of things in a single write(*,*), it just break the output line at certain point.
For Example, when I write the code:
write(11,*) 'aaaaaaaaa ','aaaaaaaaa ','aaaaaaaaa ', 'aaaaaaaaa ',&
& 'aaaaaaaaa ', 'aaaaaaaaa ', 'aaaaaaaaa ', 'aaaaaaaaa ',&
& 'aaaaaaaaa' ,'aaaaaaaaa ', 'aaaaaaaaa'
The output file 'fort.11' is with 2 lines instead of one continuous line.
aaaaaaaaa aaaaaaaaa aaaaaaaaa aaaaaaaaa aaaaaaaaa aaaaaaaaa
aaaaaaaaa aaaaaaaaa aaaaaaaaa aaaaaaaaa aaaaaaaaa
I don't remember this happening with other compilers that I used in the past.
Does any one know how to fix this problem???
This is crucial for making output data tables.
Thanks in advance.