The following program print 1 for 100E-2
and gives 0 for 100*10**(-2)
, that means that
the operator exponent doesnot work for negative **
, is that correct.
Thanks in advance
program testme
implicit none
print*,100E-2
print*,100*10**(-2)
end program