【无标题】

这两个程序分别实现了读取文本文件text.txt的内容并计算行数,以及将读取的内容复制到新的文件text1.txt中。它们使用了fopen函数打开文件,fgets用于读取,fclose关闭文件,以及条件判断来确保文件操作的正确性。
摘要由CSDN通过智能技术生成

在这里插入图片描述

作业一
#include <stdio.h>
#include <string.h>
#include <stdlib,h>
#include <errno.h>

int main(int argc,const char *atgv[])
{
FILE *fp=NULL;
FILE *fp_1=NULL;
if((fp=fopen(“./text.txt”,“r”))==NULL)
{
perror(“fopen error”);
return -1;
}
char p[100];
int count=0;
while(fgets(p,sizeof[p],fp)!=NULL)
{
if((p[strlen§-1)!=NULL)
count++;
}
printf(“总行数为%d\n”,count);
fclose(fp);
fclose(fp_1);
return 0;
}

作业二
#include <stdio.h>
#include <string.h>
#include <stdlib,h>
#include <errno.h>

int main(int argc,const char *atgv[])
{
FILE *fp=NULL;
FILE *fp_1=NULL;
if((fp=fopen(“./text.txt”,“r”))==NULL)
{
perror(“fopen error”);
return -1;
}
if((fp_1=fopen(“./text1.txt”,“w”))==NULL)
{
perror(“fopen error”);
return -1;
}
char p[100];
while(fgets(p,sizeof§,fp)!=NULL)
{
fputs(p,fp_1)
}
fclose(fp);
fclose(fp_1);
return 0;
}

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值