函数
<cstdio>

putchar

int putchar ( int character );
将字符写入标准输出
将一个字符写入标准输出stdout)。

它等同于调用 putc 并将 stdout 作为第二个参数。

参数

character
要放回的字符的int提升为 int 型的待写入字符。
该值在放回时被内部转换为unsigned char写入时。

返回值

成功时,返回写入的字符
如果发生写入错误,则返回 EOF 并设置错误指示器 (ferror)。

示例

1
2
3
4
5
6
7
8
9
10
/* putchar example: printing the alphabet */
#include <stdio.h>

int main ()
{
  char c;
  for (c = 'A' ; c <= 'Z' ; c++) putchar (c);

  return 0;
}

此程序将ABCDEFGHIJKLMNOPQRSTUVWXYZ写入标准输出。

另见