Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations SkipVought on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

anyone else had this error with gfortran ?

Status
Not open for further replies.

zmth

Technical User
Aug 5, 2015
57
0
0
PH
integer*8 lisf(17)
nn=3
lisf=[1,1,2,(0,i=4,4*nn+5)]
print*,lisf
end

But on the screen the entries after the 4th are invalid numbers,NOT all 0's. And on other occasions of similar types it does not even print out the entries >4 and if have more steps,assigning loops etc. get run time errors that is nothing is printed as error but hangs up like illegal memory.

NOw if change the one line to:

lisf=[1,1,2,(0,i=4,17)]

then all is correct. It was also correct as above if just had
integer lisf(17)
and all other lines as the first 5 above - though that could have just been coincidence that it just happened to print all 0's anyway.
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top