c语言一整行一整行读取文件

原文链接:https://my.oschina.net/liangzhenghui/blog/194560
/*
 * fileTest.c
 *
 *  Created on: 2013-3-11
 *      Author: ken
 *  goal:
 * 		char *fgets(char *s, int n, FILE *stream);
		从文件指针stream中读取n-1个字符,存到以s为起始地址的空间里,直到读完一行,如果成功则返回s的指针,否则返回NULL。
 */
#include<stdio.h>
#include<string.h>
int main() {
	FILE *in;
	int LINE = 128,len;
	char buf[LINE];
	in = fopen("K:/test.txt", "r");
	if (in == NULL) {
		printf("找不到该文件");
	} else {
		printf("找到该文件了,开始读取文件内容....\n");
		while(fgets(buf, LINE, in) != NULL) {
			len = strlen(buf);
			printf("%s %d \n",buf,len - 1);
		}
	}
	return 0;
}

关于len-1

是因为fgets(str,n,fp)函数中,n为求得到的字符,但只能从fp指向的文件输入n-1个字符,然后在最后加上一个'\0'字符,因此得到的字符串有n个字符,把它们放到str的首地址。

所以实际上len-1才是我们希望看到的数目

转载于:https://my.oschina.net/liangzhenghui/blog/194560

上一篇:你可以在Python的MS Windows上打开stdin作为文件吗?


下一篇:fgets 函数用法