別のファイルから文字列を読み取って配列に格納する際に問題があります。プログラム全体で使用できるように、その配列を指すポインターが必要です。すべての変数はグローバルです。これで動作するように fgets 行を修正してください。ありがとう!
#include <stdio.h>
#include <stdlib.h>
void load_data();
int value;
char name[25];
char * nameP = NULL;
char another_name[25];
char * another_nameP = NULL;
int main()
{
load_data();
printf("value = %i\n", value);
printf("name = %s\n", name);
printf("another name = %s\n", another_name);
return 0;
}
void load_data()
{
FILE * fileP;
if (!(fileP = fopen ("save_file.dat", "rt")))
{
printf("\nSave file \"save_file.dat\" not found.\n");
printf("Make sure the file is located in the same folder as the executable file.\n\n");
exit(1);
}
rewind(fileP);
fscanf (fileP, "%i", &value);
fgets (name, 25, fileP); // what is wrong with this line?
fgets (another_name, 25, fileP); // what is wrong with this line?
nameP = name;
another_nameP = another_name;
}
save_file.dat の内容:
30
This is my name
This is another name