Tagged Questions
2
votes
1answer
806 views
Why in SAS does a numeric literal in scientific notation give a different number to the number written out explicitly?
The following SAS code:
data _null_;
format t u best32.;
t = 10000000000000000000000000;
u = 1e25;
put t u;
if t ne u then put 'diff';
run;
on my Windows machine prints out:
...