我在閱讀我的數組內容時遇到了一些問題。我不確定是否正確存儲它,因爲我的結果是每行都是'1304056712'。正確地按行存儲文件內容並稍後打印數組內容
#include <stdio.h>
#include <stdlib.h>
#define INPUT "Input1.dat"
int main(int argc, char **argv) {
int data_index, char_index;
int file_data[1000];
FILE *file;
int line[5];
file = fopen(INPUT, "r");
if(file) {
data_index = 0;
while(fgets(line, sizeof line, file) != NULL) {
//printf("%s", line); ////// the line seems to be ok here
file_data[data_index++] = line;
}
fclose(file);
}
int j;
for(j = 0; j < data_index; j++) {
printf("%i\n", file_data[j]); // when i display data here, i get '1304056712'
}
return 0;
}
Input1.dat文件是什麼樣的?它是一個數字列表,每行一個? – 2014-12-04 04:35:58
緩衝區溢出示例 – 2014-12-04 04:39:52