String literals are used to specify arrays of characters. They are sequences of characters enclosed within double quotes (e.g. "abcd" and have the type char*).
The L prefix makes the literal a wide character array, of type wchar_t*. For example, L"abcd".
Since C11, there are ot...