将文件中的数据读入数组 - C语言

时间:2018-02-11 20:21:24

标签: c file

我创建了一个文件data.txt,用于包含将来计算所需的数据。我想编写一个程序,将所有这些数据加载到一个数组中。这是我的最小例子:

#include <stdio.h>
#include <strings.h>
#include <stdlib.h>

int main(void) {
    FILE *fp = fopen("data.txt", "r");
    int array[15];
    fread(array, sizeof(int), 15, fp);
    for(int i = 0; i < 15; i++) {
        printf("%d \n", array[i]);
    }
}

data.txt中:

1
2
3
4432
62
435
234
564
3423
74
4234
243
345
123
3

输出:

171051569 
875825715 
906637875 
859048498 
858917429 
909445684 
875760180 
923415346 
842271284 
839529523 
856306484 
822752564 
856306482 
10 
4195520 

你能告诉我出了什么问题吗?

1 个答案:

答案 0 :(得分:2)

我建议使用fscanf作为基本示例。稍后,最好继续使用fgetssscanf

#include <stdio.h>
#include <stdlib.h>

int main(void)
{
    FILE *fp = fopen("data.txt", "r");
    if(fp == NULL) {
        exit(1);
    }
    int num;
    while(fscanf(fp, "%d", &num) == 1) {
        printf("%d\n", num);
    }
    fclose(fp);
    return 0;
}

节目输出:

1
2
3
4432
62
435
234
564
3423
74
4234
243
345
123
3