1 2 3 4 5 6 7 8 9 10 11 12 13
//en.cppreference.com/w/c/io/fputws.html #include <locale.h> #include <stdio.h> #include <wchar.h> int main(void) { setlocale(LC_ALL, "en_US.utf8"); int rc = fputws(L"御休みなさい", stdout); if (rc == EOF) perror("fputws()"); // POSIX requires that errno is set }