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 strongm on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Search results for query: *

  1. atothep

    Assigning small integer to larger one

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

    Assigning small integer to larger one

    Thanks for your reply. What you say makes most sense. But you mean probably something like k = int(i,8) * int(j,8) :)
  3. atothep

    Assigning small integer to larger one

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

Part and Inventory Search

Back
Top