Condividi tramite


Errore del compilatore C2137

costante carattere vuota

La costante carattere vuota (' ') non è consentita.

L'esempio seguente genera l'errore C2137:

// C2137.cpp
int main() {
   char c = '';   // C2137
   char d = ' ';   // OK
}