Re: ver 4.0 found the BUG in WIN98 code
- Posted by bernie Oct 17, 2008
- 1148 views
mattlewis said...
bernie said...
%x returns
3217040639
80000000
%g returns
3217040639
3.21704e+09
%f returns
3217040639
3217040639.000000
Looks like something is happening in sprintf.
Matt
-- It has to be there because this code does the same thing. include std/memory.e sequence x x = sprintf(" %d ",{3217040639}) printf(1,x,{}) if getc(0) then end if