返回值
成功读取的元素总数作为size_t对象返回,该对象是整数数据类型。如果此数字与nmemb参数不同,则说明发生错误或到达文件末尾。
示例
以下示例显示fread()函数的用法-
#include <stdio.h>
#include <string.h>
int main () {
FILE *fp;
char c[] = "this is jc2182";
char buffer[100];
/* Open file for both reading and writing */
fp = fopen("file.txt", "w+");
/* Write data to the file */
fwrite(c, strlen(c) + 1, 1, fp);
/* Seek to the beginning of the file */
fseek(fp, 0, SEEK_SET);
/* Read and display data */
fread(buffer, strlen(c)+1, 1, fp);
printf("%s\n", buffer);
fclose(fp);
return(0);
}
让我们编译并运行以上程序,该程序将创建文件file.txt并编写一个内容为jc2182。之后,我们使用fseek()函数将写入指针重置为文件的开头,并准备文件内容,如下所示-