ファイル名=  exercise/chapter21/ex21-9-2.c
#include 

#include

typedef struct {
char name[100];
int age;
double height;
double weight;
} person;

int main(void)
{
FILE *fp = fopen("../ex21-8-2/person.dat", "r");
if(fp==NULL){
fprintf(stderr, "★ファイルを開けません");
exit(EXIT_FAILURE);
}

person tom;
fread(&tom, sizeof(person), 1, fp);
fclose(fp);

printf("%s %d %5.1f %5.1f\n",
tom.name, tom.age, tom.height, tom.weight);

return 0;
}