Compiler Error C2053
Visual Studio 2015
The new home for Visual Studio documentation is Visual Studio 2017 Documentation on docs.microsoft.com.
The latest version of this topic can be found at 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
}
Show: