KnowledgeBase Archive

An Archive of Early Microsoft KnowledgeBase Articles

View on GitHub

Q63959: Using Unary "+" in QuickC Gives Incorrect Results

Article: Q63959
Product(s): See article
Version(s): 2.50
Operating System(s): MS-DOS
Keyword(s): ENDUSER | s_quickasm buglist2.50 plus | mspl13_c
Last Modified: 25-JUL-1990

The ANSI C standard now defines the unary + operator. However, using
this operator on a float or double precision float data type in QuickC
version 2.50 gives inaccurate results. The following code will
reproduce these results:

/* This code will print out an inaccurate value for
 * variable t
 */

static double t = +.5, tt = .5;

void main(void)
{
        printf("t = %lg tt = %lg\n", t, tt);
}

The output from this program is as follows:

   t = 0 tt = 0.5

This behavior occurs only when using floating point numbers or
doubles. Integers behave as expected.

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.

Copyright Microsoft Corporation 1986-2002.