将指定的字符写到标准输出设备
fopen,fwrite,fscanf,fputc
#include<stdio.h>
int putchar(int c);
putchar()用来将参数c字符写到标准输出设备。
putchar()会返回输出成功的字符,即参数c。若返回EOF则代表输出失败。
putchar()非真正函数,而是putc(c,stdout)宏定义。
参考getchar()。