FIX: IDE Debugger Truncates Floating Point Numbers

Last reviewed: September 19, 1997
Article ID: Q155622
The information in this article applies to:
  • The integrated debugger included with: - Microsoft Visual C++, 32-bit Edition, versions 4.0, 4.1, 4.2

SYMPTOMS

If you change the Language Settings under the operating system to a language that uses a comma as the decimal separator, recalculating any floating point numbers in the QuickWatch window in the integrated debugger truncates the floating point number. Thereafter, incorrect results may be generated from program execution. To reproduce the problem, please see “More Information” below.

The following language settings may cause this problem.

   German      Italian    Portuguese    Swedish    Norwegian
   Indonesian  Icelandic  French        Finnish   Dutch
   Danish      Catalan    Basque

RESOLUTION

To work around the problem, use one of the following suggestions:

  • In the QuickWatch window, cast the variable you plan to watch to the proper type. For example, if you plan to watch variable “a” in the following program, because “a” is defined as type double, cast it to a double in the QuickWatch window. That is, type “(double)a” (without the quotation marks) in the QuickWatch window.

    -or-

  • In the QuickWatch window, add zero to the variable. For example, in the following program, type “a+0” (without the quotation marks) in the QuickWatch window to watch variable “a”.

STATUS

Microsoft has confirmed this to be a bug in the Microsoft products listed at the beginning of this article. This bug was corrected in Visual C++ version 5.0.

MORE INFORMATION

You can use the following steps to reproduce the problem:

  1. Use Control Panel to change language settings to German(Standard), then reboot the system.

  2. Build an application using the source file below:

       /* Compile options needed: Developer Studio default console application
       */
    
       #include <stdio.h>
    
       void main()
       {
          double a = 1.99;
          double b;
    
          printf("a = %g\n", a);
    
          b = a;  // At this point do QuickWatch and Recalculate for 'a'.
    
          printf("b = %g\n", b);
       }
    
    

  3. Start debugging and get to the commented line "b = a".

  4. Use QuickWatch for “a”; it will show the correct value 1.99.

  5. Click Recalculate one or two times more.

Result: The value of “a” is changed to 1.0, and the program's output will be wrong when execution is continued to next line.
Keywords          : vcbuglist410 vcfixlist500 WBDebug kbprg
Version           : 4.0 4.1 4.2
Platform          : NT WINDOWS
Issue type        : kbbug
Solution Type     : kbfix


================================================================================


THE INFORMATION PROVIDED IN THE MICROSOFT KNOWLEDGE BASE IS PROVIDED "AS IS" WITHOUT WARRANTY OF ANY KIND. MICROSOFT DISCLAIMS ALL WARRANTIES, EITHER EXPRESS OR IMPLIED, INCLUDING THE WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. IN NO EVENT SHALL MICROSOFT CORPORATION OR ITS SUPPLIERS BE LIABLE FOR ANY DAMAGES WHATSOEVER INCLUDING DIRECT, INDIRECT, INCIDENTAL, CONSEQUENTIAL, LOSS OF BUSINESS PROFITS OR SPECIAL DAMAGES, EVEN IF MICROSOFT CORPORATION OR ITS SUPPLIERS HAVE BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES. SOME STATES DO NOT ALLOW THE EXCLUSION OR LIMITATION OF LIABILITY FOR CONSEQUENTIAL OR INCIDENTAL DAMAGES SO THE FOREGOING LIMITATION MAY NOT APPLY.

Last reviewed: September 19, 1997
© 1998 Microsoft Corporation. All rights reserved. Terms of Use.