功能: 可以复制任意标准的unix文本文件
标准输入获取字符,然后 输出到标准输出,直到结束---EOF
- #include "apue.h"
-
-
int main(void )
-
{
-
int c;
-
-
while( ( c=getc(stdin)) != EOF )
-
if( putc(c,stdout) == EOF )
-
err_sys("output error ");
-
if (ferror(stdin))
-
err_sys("input error ");
-
exit(0);
-
}
阅读(726) | 评论(0) | 转发(0) |