#include <cstdio> int putchar( int ch );
putchar() 函数将 ch 写入 stdout。代码
putchar( ch );
与
putc( ch, stdout );
相同。putchar() 函数的返回值是写入的字符,如果出现错误,则返回 EOF。