fgets函数

打开文件 fopen("需要打开的路径")
然后使用fgets函数读取行
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#define MAX_LINE 1024
int main()
{
char buf[MAX_LINE]; /*缓冲区*/
FILE *fp; /*文件指针*/
int len; /*行字符个数*/
if((fp = fopen("test.txt","r")) == NULL)
{
perror("fail to read");
exit () ;
}
while(fgets(buf,MAX_LINE,fp) != NULL)
{
len = strlen(buf);
buf[len-] = '\0'; /*去掉换行符*/
printf("%s %d \n",buf,len - );
}
return ;
}

参考http://zhidao.baidu.com/link?url=v05snVw-rKwoInpurhiYP8d9ACTJHjX4yX8-2eIX9RZbMrR-3yXjrj5_aaPwMkhDxheZoSJj3Gf0IDg29vj95q

上一篇:(4)Linux常用基本操作


下一篇:Python全栈之路----常用模块----hashlib加密模块