putwchar
来自 cppreference.com
定义在头文件 <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 name: "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 putwchar 函数 (p: TBD)
- C17 标准 (ISO/IEC 9899:2018)
- 7.29.3.9 putwchar 函数 (p: 310)
- C11 标准 (ISO/IEC 9899:2011)
- 7.29.3.9 putwchar 函数 (p: 425)
- C99 标准 (ISO/IEC 9899:1999)
- 7.24.3.9 putwchar 函数 (p: 370)
[编辑] 另请参阅
将字符写入 stdout (函数) | |
(C95) |
将宽字符写入文件流 (函数) |
C++ 文档 针对 putwchar
|