The information in this article applies to:
SYMPTOMSUsing the following test case, 32-bit _gcvt() returns a different value than 16-bit _gcvt():
The 16-bit _gcvt() rounds the value to 1.79769313486232E+308, but the
32-bit _gcvt() truncates the value to 1.79769313486231E+308.
CAUSEThe low-level floating-point-to-string conversion routines were completely rewritten for Win32. The 32-bit output routines use an internal 12-byte floating-point format for the intermediate values and a new conversion algorithm. The specific value used in the test case mentioned in the "SYMPTOMS" section is at the limit of type "double," and the new conversion routine exhibits this problem when converting the value to a 12-byte value. The conversion routine yields a mantissa string of 79769313486231490 instead of 797693134862315, which causes the rounding problems in this particular case. Additional query words:
Keywords : kbCRT kbVC |
Last Reviewed: February 2, 2000 © 2000 Microsoft Corporation. All rights reserved. Terms of Use. |