CodeBlocks(C/C++)下(輸出語系編碼設定)中文輸出(setlocale+printf)範例程式

CodeBlocks(C/C++)下(輸出語系編碼設定)中文輸出(setlocale+printf)範例程式

CodeBlocks(C/C++)下(輸出語系編碼設定)中文輸出(setlocale+printf)範例程式

#include <iostream>
#include <cstdio>
#include <cstdlib>

using namespace std;
void Pause()
{
    printf(“Press Enter key to continue…”);
    fgetc(stdin);
}
int main()
{
    setlocale(LC_ALL,”Chinese_Taiwan.950″);
    printf(“%s\n”,”測試 printf %s (寬字元測試)”);
    Pause();
    return 0;
}

 

 

發表迴響

你的電子郵件位址並不會被公開。 必要欄位標記為 *