How do I add the wide string prefix to a C-style string (in C++)?
I've seen the L
added to literals:
L"Hello";
But given:
const char cs[] = "Hello";
neither L(cs);
nor (L)cs;
works. What is the correct way to express it?
How do I add the wide string prefix to a C-style string (in C++)?
I've seen the L
added to literals:
L"Hello";
But given:
const char cs[] = "Hello";
neither L(cs);
nor (L)cs;
works. What is the correct way to express it?