int main()
{
FILE *fp;
char another = 'Y';
struct emp
{
char name[20];
int age;
float bs;
};
struct emp e;
fp = fopen("employee.dat", "w");
if(fp == NULL)
{
printf("file cannot be opened for writing\n");
exit(1);
}
while(another == 'Y')
{
printf("\n enter name, age and basic salary: ");
scanf("%s %d %f", e.name, &e.age, &e.bs);
fprintf(fp, "%s %d %f\n", e.name, e.age, e.bs);
printf(" Add another record (Y/N)");
fflush(stdin);
scanf("%c", &another);
}
fclose(fp);
return 0;
在這個程序中,我試圖將記錄寫入文件named,employee.dat。程序執行得很好,但只需要一條員工記錄,然後程序終止。它不要求下一條記錄添加,即,將記錄寫入文件:c
fflush(stdin);
scanf("%c", &another);
沒有在程序中執行。
在此先感謝....
沒有必要! noly使用flushall(); scanf後 –
@OneManCrew你是什麼意思「不需要」?這是另一種方式,與您的一樣好。 –