本文介绍了使用C的BIN文件的Eof的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

你好专家,



我是使用ansi C的初学者。我习惯使用文本文件,但现在我正在尝试使用bin文件。



我设法写入bin文件,甚至使用for循环读取,但是可以在bin中读取到文件末尾吗?



这是我的示例代码。



Hello experts,

I am a beginer using ansi C. I am quite used to use text files, but now i am trying to use a bin file.

I managed to write to the bin file, and even to read using a for loop, but is it possible to read till end of file in bin please?

This is my sample code.

typedef struct
{
     char Name[name_l];
     short Score;
}player_t;

player_t Player1;

FILE *HighScores;
HighScores = fopen("HighScores.bin","rb");

fread(&Player1, sizeof(player_t),1,HighScores);
printf("\n%s\n",Player1.Name);

推荐答案


这篇关于使用C的BIN文件的Eof的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

10-28 09:13