หมายเหตุ
การเข้าถึงหน้านี้ต้องได้รับการอนุญาต คุณสามารถลอง ลงชื่อเข้าใช้หรือเปลี่ยนไดเรกทอรีได้
การเข้าถึงหน้านี้ต้องได้รับการอนุญาต คุณสามารถลองเปลี่ยนไดเรกทอรีได้
signed/unsigned keywords mutually exclusive
Remarks
The keywords signed and unsigned are used in a single declaration.
Example
The following example generates C2042:
// C2042.cpp
unsigned signed int i; // C2042
Possible resolution:
// C2042b.cpp
// compile with: /c
unsigned int i;
signed int ii;