int towupper(wint_t wChar);
#include <iostream>
#include <cwctype>
int main() {
using namespace std;
wcout << "Lowercase: " << L'x' << endl;
wcout << "Uppercase: " << (wchar_t)towupper(L'x') << endl;
return 0;
}
© 20072025 XoaX.net LLC. All rights reserved.