⽤C语⾔实现Linux命令的cat功能#include <stdio.h>
void file_copy(FILE * file1,FILE * file2)
大灰狼和七只小羊的故事小红参{
int c;
while((c = getc(file1)) != EOF)
{
putc(c,file2);
诡计的近义词
}
}
int main(int argc,char *argv[])
酒店英语{
/
/声明⼀个⽂件指针
FILE * fp;
if(argc == 1)
file_copy(stdin,stdout);
el
while(-- argc > 0)
{
高中留学出国if((fp = fopen(*++argv,"r")) == NULL)
{
printf("no such file %s",*argv);
return 1;
}
el
{
file_copy(fp,stdout);
//关闭⽂件
fclo(fp);
}
卡通小鹿}
return 0;
深圳市物价局>亲子阅读绘本}