#include<stdio.h>
#define SIZE 4
struct student{
char name[10];
int num;
int age;
char addr[15];
}stud[SIZE];
void save()
{
FILE *fp;
int i;
if((fp=fopen("list_stu","w"))==NULL)
{printf("can not open the file\n");
return;
}
for(i=0;i<SIZE;i++)
if(fwrite(&stud[i],sizeof(struct student),1,fp)!=1)
printf("file error\n") ;
fclose(fp);
}
void main()
{int i;
printf("please input name num age addr\n");
for(i=0;i<SIZE;i++)
scanf("%s%d%d%s",stud[i].name,&stud[i].num,&stud[i].age,stud[i].addr);
save();
}
此代码哪个地方有问题?为什么我始终输出的是没有后缀的"list_stu“文件?请高手帮我找到?
if((fp=fopen("list_stu","w"))==NULL) 你这行始终打开的都是没后缀的list_stu啊 ?怎么改呀?谢谢了
牛魔王的故事
幕布斯7119047