#include <myhead.h>
int main(int argc, const char *argv[])
{
FILE *fp;
fp=fopen("./1.txt","r");
if(fp==NULL)
{
perror("fp");
return -1;
}
char buff;
int count=0;
while((buff=fgetc(fp))!=EOF)
{
if(buff=='\n')
{
count++;
}
}
printf("行号有%d\n",count);
return 0;
}
fgetc获取文件的行号
最新推荐文章于 2024-10-31 15:49:24 发布