Hello:
I have a simple program that consists of the following 3 lines of code:
double precision :: temp
temp = 0.0625
write(6, '(F10.3)') temp
When I compile (using compiler version 10.1.014) the code in Debug mode and run it,it writes out the number 0.062. But when I use Release mode I get a result of 0.063.
Why is there a difference?
Thanks.
Michael




