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