a strange question: what is the highest value that I can associate to a numeric value?
marco
Marco Boschi
info@marcoboschi.it
info@marcoboschi.it
a strange question: what is the highest value that I can associate to a numeric value?
marco
If I remember correctly, you have 15 significant digits available. You'd better ask to comp.lang.xharbour, though.
EMG
FUNCTION MAIN()
LOCAL n
n = 0.9999999999999999
? n
n = 0.999999999999999
? n
INKEY( 0 )
RETURN NILThank you Emg
marco