Errore del compilatore C2042
le parole chiave signed/unsigned si escludono a vicenda
Le parole chiave signed
e unsigned
vengono usate in un'unica dichiarazione.
L'esempio seguente genera l'errore C2042:
// C2042.cpp
unsigned signed int i; // C2042
Possibile soluzione:
// C2042b.cpp
// compile with: /c
unsigned int i;
signed int ii;