Ah okay, I wasn't aware that int(i,8) is a Fortran 2003 feature. My compilers do not seem to have problems with that. But it's good to know that I might run into trouble with older compilers.
Thanks again for all your answers.
Hi everyone,
consider the following code snippet:
ccccccccccccccccccccccccccccccc
integer*4 :: i, j
integer*8 :: k
i = 1000000
j = 2000000
k = i * j
ccccccccccccccccccccccccccccccc
My question is:
Is there any standard how this will be evaluated? Or is this...
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.