C 二进制读写数据
C 二进制读写数据
日期:2021-06-19 03:00:44 人气:1
for(i=0;i<SIZE;i++)
{
if(fwrite(&stud[i],sizeof(struct student_type),1,fp)!=1)
{
printf("file write error\n");
}
fclose(fp);//放错位置了
}
修改为:
for(i=0;i<SIZE;i
{
if(fwrite(&stud[i],sizeof(struct student_type),1,fp)!=1)
{
printf("file write error\n");
}
fclose(fp);//放错位置了
}
修改为:
for(i=0;i<SIZE;i