Movatterモバイル変換


[0]ホーム

URL:


cppreference.com
Namespaces
Variants
    Actions

      fputws

      From cppreference.com
      <c‎ |io
       
       
      File input/output
      Types and objects
      Functions
      File access
      Unformatted input/output
      (C95)(C95)
      (C95)
      (C95)(C95)
      fputws
      (C95)
      (C95)

      Formatted input
       
      Defined in header<wchar.h>
      int fputws(constwchar_t*str,FILE*stream);
      (since C95)
      (until C99)
      int fputws(constwchar_t*restrict str,FILE*restrict stream);
      (since C99)

      Writes every character from the null-terminated wide stringstr to the output streamstream, as if by repeatedly executingfputwc.

      The terminating null wide character fromstr is not written.

      Contents

      [edit]Parameters

      str - null-terminated wide string to be written
      stream - output stream

      [edit]Return value

      On success, returns a non-negative value

      On failure, returnsEOF and sets theerror indicator (seeferror) onstream.

      [edit]Example

      Run this code
      #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}

      Output:

      御休みなさい

      [edit]References

      • C11 standard (ISO/IEC 9899:2011):
      • 7.29.3.4 The fputws function (p: 423)
      • C99 standard (ISO/IEC 9899:1999):
      • 7.24.3.4 The fputws function (p: 368)

      [edit]See also

      writes a character string to a file stream
      (function)[edit]
      prints formatted wide character output tostdout, a file stream or a buffer
      (function)[edit]
      fputws
      (C95)
      writes a wide string to a file stream
      (function)[edit]
      (C95)
      gets a wide string from a file stream
      (function)[edit]
      Retrieved from "https://en.cppreference.com/mwiki/index.php?title=c/io/fputws&oldid=96426"

      [8]ページ先頭

      ©2009-2025 Movatter.jp