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;
}