我目前在 Windows XP 中使用 MinGW。
我编写了一个程序,该程序接受用户的输入并将它们放入 .txt 文件中
typedef struct data_base{
char name[254];
int age;
int postalcode;
struct data_base *next;
}person;
我想知道是否有办法编辑 .txt 文件的数据。
例如,在 .txt 文件中,我有 3 组基于用户输入的数据:
Steven //name
19 //age
1100 //postal code
Jack
24
2203
Mary
21
0109
我会询问用户他希望编辑哪组数据。然后在获取编辑后的数据后,我希望在用户选择的特定集的 .txt 文件中覆盖该数据。
#include <stdio.h>
#include <stdlib.h>
typedef struct data_base{
char name[254];
int age;
int postalcode;
struct data_base *next;
}person;
void read()
{
person *curr[20];
int count = 0;
FILE *f;
int editchoice = 0;
f = fopen("personfile.txt","r+");
// Read the data in the file based on user's input
//Display the names: 1. Steven 2.Jack 3.Mary
printf("Editing Whose Data?: \n");
scanf("%d",&editchoice);
printf("New name: \n");
scanf("%s",&curr[editchoice]->name);
fprintf(f,"%s\n",curr[editchoice]->name);
printf("New age: \n");
scanf("%d",&curr[editchoice]->age);
fprintf(f,"%d\n",curr[editchoice]->age);
printf("New name: \n");
scanf("%d",&curr[editchoice]->postalcode);
fprintf(f,"%d\n",curr[editchoice]->postalcode);
}
我预计数据会被覆盖,但它没有发生。(对不起,我是初学者。)