#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
时间: 2024-10-10 23:36:26