int main() { const char *const_str = ""; const wchar_t *const_wstr = L""; // BAD char c = 'c'; wchar_t wc = L'c'; // BAD return 0; }