Compiler Error C2053
'identifier' : wide string mismatch
The wide string is assigned to an incompatible type.
The following sample generates C2053:
// C2053.c
int main() {
char array[] = L"Rika"; // C2053
}
This browser is no longer supported.
Upgrade to Microsoft Edge to take advantage of the latest features, security updates, and technical support.
'identifier' : wide string mismatch
The wide string is assigned to an incompatible type.
The following sample generates C2053:
// C2053.c
int main() {
char array[] = L"Rika"; // C2053
}