#include <stdio.h>
#define MAXLINE 20
int main(void)
{
char line[MAXLINE];
while(fgets(line,MAXLINE,stdin) != NULL && line[0] != ‘\n‘)
fputs(line, stdout);
return 0;
}
//fgets函数保留了换行符,而fputs函数不会添加换行符。
利用fgets,fputs的回显程序,布布扣,bubuko.com
原文地址:http://www.cnblogs.com/0822vaj/p/3804352.html