ファイル名=  exercise/chapter21/ex21-3-1.c
#include 

#include
int main(void)
{
FILE *fp = fopen("person.txt", "w");
if(fp==NULL){
fprintf(stderr, "★ファイルを開けません");
exit(EXIT_FAILURE);
}

fprintf(fp, "%s %d %f %f\n", "木村太郎", 21, 185.8, 73.5);
fprintf(fp, "%s %d %f %f\n", "鈴木修", 20, 177.1, 66.0);
fprintf(fp, "%s %d %f %f\n", "森下花", 22, 168.2, 48.9);

fclose(fp);

return 0;
}