int putc(int ch,FILE *stream); 将ch所对应的字符输出到stream指定的文件流中(stdout表示屏幕)。
int putch(int ch); 将缓冲区中的ch所对应的字符输出到屏幕。头文件为conio.h,不是标准c.
int putchar(int ch); 将ch所对应的字符输出到屏幕中。
注:以上函数不会自动换行。
int puts(const char *string);(1). puts()函数只能输出字符串, 不能输出数值或进行格式变换。(2). 可以将字符串直接写入puts()函数中。如:puts("Hello,world!");(3). puts 和 printf 的用法一样,puts()函数的作用与语句“printf("%s\n",s);的作用相同。注意:puts在输出字符串后会自动输出一个回车符。
使用:putch(ch);putch(‘a’);……………..格式类似。