关于文件的问题
我写的这个程序,可是当我输入完必要的数据后,为什么还要在输一次才能显示结果?此外,如果,我想把程序运行结果放在某个特定的文件里,该怎么办?嗯,还有想用c做一个搜索应用,怎么存必要的数据,我该如何做一个文件呢?求大家的解答,感谢。#include<stdio.h>
#include<stdlib.h>
int main()
{struct stu_data
{int num;
char name[20];
char addr[20];
int text;
}stu[3];
FILE *fp;
int i,j;
fp=fopen("studentdata.txt","w");
if(fp==NULL)
{printf("cannot open the file\n");
return 0;
}
for(i=0;i<3;i++)
{scanf("%d%s%s%d\n",&stu[i].num,&stu[i].name,&stu[i].addr,&stu[i].text);
fwrite(&stu[i],sizeof(struct stu_data),1,fp);
}
fclose(fp);
fp=fopen("studentdata.txt","r");
if(fp==NULL)
{printf("cannot open the file\n");
return 0;
}
for(j=0;j<3;j++)
{fread(&stu[j],sizeof(struct stu_data),1,fp);
printf("%-15d%-20s%-20s%-5d\n",stu[j].num,stu[j].name,stu[j].addr,stu[j].text);
}
fclose(fp);
system("pause");
return 0;
}