std::fputc, std::putc
来自 cppreference.com
定义在头文件 <cstdio> 中 |
||
将字符 ch 写入给定的输出流 stream。
在内部,字符在写入之前会被转换为 unsigned char。
在 C 中,putc() 可能被实现为宏,这在 C++ 中是不允许的。因此,对 std::fputc() 和 std::putc() 的调用总是具有相同的效果。
内容 |
[编辑] 参数
ch | - | 要写入的字符 |
stream | - | 输出流 |
[编辑] 返回值
成功时,返回写入的字符。
失败时,返回 EOF 并在 stream 上设置错误指示器(参见 std::ferror())。
[编辑] 示例
运行此代码
#include <cstdio> int main() { for (char c = 'a'; c != 'z'; c++) std::putc(c, stdout); // putchar's return value is not equal to the argument int r = 0x102A; std::printf("\nr = 0x%x\n", r); r = std::putchar(r); std::printf("\nr = 0x%x\n", r); }
可能的输出
abcdefghijklmnopqrstuvwxy r = 0x102A * r = 0x2A
[编辑] 参见
将字符写入 stdout (函数) | |
C 文档 适用于 fputc, putc
|