stdio文件函数详解(12)
发布时间:2021-06-07
发布时间:2021-06-07
stdio文件常用函数
函数功能: 从fp指向的文件中读取一个长度为(n-1)的字符串,存入起始地址为buf的空间 函数返回: 返回地址buf,若遇文件结束或出错,返回NULL
函数说明: buf-存放读入的字符数组指针,n-最大允许的读入字符数,fp-文件指针 所属文件: <stdio.h>
#include <string.h>
#include <stdio.h>
int main()
{
FILE *stream;
char string[]="This is a test";
char msg[20];
stream=fopen("test.txt","w+");
fwrite(string,strlen(string),1,stream);
fseek(stream,0,SEEK_SET);
fgets(msg,strlen(string)+1,stream);
printf("%s",msg);
fclose(stream);
return 0;
}
@函数名称: feof
函数原型: int feof(FILE * fp);
函数功能: 检查文件是否结束.
上一篇:第三章 网络危机的应对策略