putwchar

来自cppreference.com
< c‎ | io
 
 
文件输入/输出
类型与对象
函数
文件访问
直接输入/输出
无格式输入/输出
(C95)(C95)
(C95)
(C95)(C95)
(C95)
putwchar
(C95)
(C95)
有格式输入
 
在标头 <wchar.h> 定义
wint_t putwchar( wchar_t ch );
(C95 起)

将宽字符 ch 写入 stdout

参数

ch - 要被写入的宽字符

返回值

成功时为 ch,失败时为 WEOF

示例

#include <locale.h>
#include <stdio.h>
#include <stdlib.h>
#include <wchar.h>
 
int main()
{
    setlocale(LC_ALL, "en_US.utf8");
 
    const wchar_t data[] =
    {
        L'\u2200', // Unicode 名: "FOR ALL"
        L'∀',
        L'\n',
    };
 
    for (size_t t = 0; t != (sizeof data / sizeof(wchar_t)); ++t)
    {
        if (putwchar(data[t]) == WEOF)
        {
            puts("I/O error in putwchar");
            return EXIT_FAILURE;
        }
    }
 
    return EXIT_SUCCESS;
}

可能的输出:

∀∀

引用

  • C23 标准(ISO/IEC 9899:2024):
  • 7.31.3.9 The putwchar function (第 TBD 页)
  • C17 标准(ISO/IEC 9899:2018):
  • 7.29.3.9 The putwchar function (第 310 页)
  • C11 标准(ISO/IEC 9899:2011):
  • 7.29.3.9 The putwchar function (第 425 页)
  • C99 标准(ISO/IEC 9899:1999):
  • 7.24.3.9 The putwchar function (第 370 页)

参阅

将一个字符写入 stdout
(函数)
将一个宽字符写入文件流
(函数)