Strings in C Programming

Literals | C Programming | Unicode

The C11 standard provides a new prefix, u8, which allows you to define a UTF-8 string literal

A wide-string literal is defined using the prefix L: L"This String is Wide."

and of the type wchar_t.

Although C does not strictly prohibit modifying string literals, you should not attempt to do so.

http:///wiki/?cstrings

22nov16   admin