// c02.cpp : C语言逐行读出文件内容
#include “stdafx.h”
#include
#include
#define Max_LENGTH 1024
using namespace std;
int main(void)
{
char str[Max_LENGTH];
FILE *fp;
char ch;
int lines = 0;
memset(str, 0, Max_LENGTH);
if (fp = fopen(“d:\myfile.txt”, “r”))
{
while (!feof(fp))
if (getc(fp) == ‘\n’) lines++ ;
printf(“文件的行数=:%d\n”, lines);
rewind(fp); //重置读写指针
while (fscanf(fp, “%[^\n]”, str) != EOF)
{
fseek(fp, 2L, SEEK_CUR); //必须让当前读指针再向后移两个字符以跳过0x0d 0x0a
printf(“读出的当前行=%s\n”, str);
}
fclose(fp);
}
printf(“文件读取完毕!!!”);
return 0;
}
C语言逐行读出文件内容
最新推荐文章于 2024-01-10 20:57:54 发布