wctype_t wctype(const char* kcpCategory);
#include <iostream>
#include <cwctype>
int main() {
using namespace std;
wcout << "Lowercase: " << L'x' << endl;
wcout << "Uppercase: " <<
(wchar_t)towctrans(L'x', wctype("upper")) << endl;
return 0;
}
© 20072025 XoaX.net LLC. All rights reserved.