如何读取文本文件的内容并将其放入数组中?例如,我的文本文件中有 3、2、1、0,我想读取文件并将值存储在数组中。我正在使用该fscanf
功能来执行此操作:
int a[4];
point = fopen("test.txt", "r");
for(int i = 0; i < 4; i++)
{
fscanf( point , "%d " , &a[i]);
}
// printing put the values ,but i dont get the text file values
for(int i = 0; i < 4; i++)
{
printf("%d\n" , a[i]);
}
我运行了这个程序,但没有得到文本文件中存在的值。有人可以建议一种方法吗?我想用fscan
函数专门解决它。