123456789101112 |
- #include <stdio.h>
- #include <wchar.h>
- #include <wctype.h>
- int main() {
- wchar_t *str = L"HaLf WiDe ChAr StRiNg!\n";
- fputws(str, stdout);
- for (int i = 0; i < wcslen(str); i++) {
- putwchar(towctrans(str[i], wctrans("tolower")));
- }
- return 0;
- }
|