Possible Duplicate:
How to convert concatenated strings to wide-char with the C preprocessor?
I have a string literal defined using a #define:
#define B "1234\0"
How do I use this definition to get this wide string literal at compile time?:
L"1234\0"
(just the #defined string literal with L prepended to make it into a wide string).
I tried this:
#define MAKEWIDE(s) L##s
but this generates LB.
'\0'character at the end of your literal strings - the compiler will do that for you. The only times I can think of when you need to do it yourself is if you actually need two null characters at the end of your string, or you need to ensure that a character array being initialized with the literal gets the null terminating character - in C, a char array of just the right size won't get the null character. Adding it yourself expliitly will encourage the compiler to generate at least a warning. Both of these uses would be only rarely useful. – Michael Burr Jul 7 '11 at 0:00