The information in this article applies to:
SUMMARYThe additional adherence to the ANSI standard, beginning with C version 6.0 and QuickC versions 2.5 and 2.51, will cause a negative signed integer to be converted to an unsigned integer in a comparison with an unsigned integer. This is the correct and intended behavior, although it may produce results that are unexpected. The sample code below demonstrates this behavior. MORE INFORMATIONThis is new in C 6.0 and is documented in the Microsoft C "Advanced Programming Techniques" version 6.0 manual on page 422, Section B.1.2. The following program produces warning C4018 "signed/unsigned mismatch" at warning level 3 or 4. Casting of the variables preserves their relationship in the expression. Sample Code
The output from the program above is:
Either of the following methods may be used to achieve the expected
behavior:
-or- Additional query words: 8.00 8.00c 9.00
Keywords : kbcode kbLangC kbVC100 kbVC150 kbVC200 kbVC400 kbVC500 |
Last Reviewed: July 6, 1999 © 2000 Microsoft Corporation. All rights reserved. Terms of Use. |