使用wprintf输出中文

以前就为这个问题头疼过,现在记录一下,防止以后忘记

//使wprintf可以输出中文
setlocale(LC_ALL, "chs");

LPVOID pwChar = L"我不知道";
wprintf(L"%s\n", pwChar);
LPVOID wchar = (LPVOID)L'啊';
wprintf(L"%c\n", wchar);
getchar();

你可能感兴趣的:(代码大全,wprintf)