إشعار
يتطلب الوصول إلى هذه الصفحة تخويلاً. يمكنك محاولة تسجيل الدخول أو تغيير الدلائل.
يتطلب الوصول إلى هذه الصفحة تخويلاً. يمكنك محاولة تغيير الدلائل.
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;