I'm having problems with some old code used for research, which I would like to compile using the Intel Fortran compiler. In a particular routine, I get segmentation errors if I do not add to the write statement, which simply displays the loop index value.
do j=1,ne SOME STUFF write(*,*) 'j=', j end
What could be causing my error, so this write statement will correct my segmentation error? (Note: j is declared as an integer)
thanks keely
Keely
source share