関数fread_float マニュアル

(The documentation of function fread_float)

Last Update: 2021/12/1


◆機能・用途(Purpose)

バイナリファイルからfloat型のデータをdouble型変数に読み込む。
Read float-type data in a binary file to double-type variables.


◆形式(Format)

#include <file.h>
inline void fread_float(double ∗d,const int number,FILE ∗fp)


◆引数(Arguments)

d データの読み込み先の配列またはアドレス。
An array or an address to which the data will be read.
number 読み込むfloat型データの個数。
The number of float-type data to read.
fp 読み込むファイルのファイルポインタ。
The file pointer of the file to read.


◆使用例(Example)

double d1;
double d2[10];
FILE ∗fp=fopen("binary_data","rb");
fread_float(&d1,1,fp);
fread_float(d2,10,fp);