1. 程式人生 > >C語言輸出中文

C語言輸出中文

#include <stdio.h>

#include <wchar.h>

#include <locale.h>

int main()

{
    wchar_t str[] = L"中文文字解決方案";
    setlocale(LC_ALL,"Chs");    //設定中文
    wprintf(L"%ls %lc\n",str,str[1]);
    return 0;
}