📅  最后修改于: 2020-09-25 10:21:47             🧑  作者: Mango
towctrans() 函数在
wint_t towctrans(wint_t wc, wctype_t desc);
towctrans() 函数对desc
指定的宽字符 wc
进行转换。
#include
#include
#include
#include
using namespace std;
int main()
{
setlocale(LC_ALL, "en_US.UTF-8");
wchar_t str[] = L"Ŝŵitĉhiňģ Ćăse";
wcout << L"Before transformation" << endl;
wcout << str << endl;
for(int i=0; i
运行该程序时,输出为:
Before transformation
Ŝŵitĉhiňģ Ćăse
After transformation
ŝŴITĈHIŇĢ ćĂSE