我正在尝试从文本文件中读取并将其存储到一个数组中,但是我的最后一个数组充满了垃圾,有什么办法可以修复它吗?作为参考,我不需要最后一行值,但我似乎找不到摆脱它的方法。
int k;
char string[100];
for(k = 0; k < MAX_STATIONS; k++){
if (fgets(string, sizeof(string), fp) == 0){
break;
}
fscanf(fp,"%d %f %d %d %d %d %d %f %f", &stationInfo[k].stationID, &stationInfo[k].temperature, &stationInfo[k].year, &stationInfo[k].month, &stationInfo[k].day, &stationInfo[k].hour, &stationInfo[k].minute, &stationInfo[k].location.latitude, &stationInfo[k].location.longitude);
printf("%d %1.2f %d %d %d %d %d %f %f\n", stationInfo[k].stationID, stationInfo[k].temperature, stationInfo[k].year, stationInfo[k].month, stationInfo[k].day, stationInfo[k].hour, stationInfo[k].minute, stationInfo[k].location.latitude, stationInfo[k].location.longitude);
}
编辑:我意识到使用这种方法,我实际上并没有读取文件的第一行。我该如何解决这个问题?