Nota
L-aċċess għal din il-paġna jeħtieġ l-awtorizzazzjoni. Tista’ tipprova tidħol jew tibdel id-direttorji.
L-aċċess għal din il-paġna jeħtieġ l-awtorizzazzjoni. Tista’ tipprova tibdel id-direttorji.
empty character constant
Remarks
The empty character constant ( ' ' ) is not permitted.
Example
The following example generates C2137:
// C2137.cpp
int main() {
char c = ''; // C2137
char d = ' '; // OK
}