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.
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.