(02-22-2023, 11:26 AM)BSpinoza Wrote: Why is in QB64 a limitation of the function EXP ?
"EXP(numericExpression)
...
The numericExpression must be less than or equal to 88.02969 or an "overflow" error will occur."
I don't get an error message. Or what am I doing wrong?
Code: (Select All)
Option _Explicit
Dim As Double resultat, exponent
exponent = 98.02969
resultat = Exp(exponent)
Print resultat
End