这是我的代码
#include <stdio.h>
#include <stdlib.h>
int main ()
{
int x = 0;
int y = 0;
float a[5][2]; //array
float b[3][2]; //array
float c[2][2]; //array
FILE *fr;
//int c;
float power;
char unit[5];
//int N; //Number of sensors
float TI; //Time interval
//char M; //Midpoint
//char T; //Trapezoid
//int SR; //Sample Rate
fr = fopen("sensor_0.txt","r");
/*fr = fopen("sensor_1.txt","r");
fr = fopen("sensor_2.txt","r");
*/
//----------------------------------------------------------------------------------------------------------------------------
printf("The contents of %s file are :\n", "sensor_0.txt");
while ( !feof( fr ) )
{
fscanf(fr, "%f %f %s",&TI, &power, unit);
//printf("%f, %f \n", TI,power); //print
a[x][y] = TI;
a[x][++y]= power;
x++;
y = 0;
}
fclose(fr);
//----------------------------------------------------------------------------------------------------------------------------
printf("%s", "hello");
return 0;
}
为什么我的字符串在while循环后没有打印出来?
如果我取消注释while循环内的同一行,它会正确打印。我也尝试过添加简单的printf("hello")
但是在while循环之后似乎没有任何工作。
编辑 - 次要格式化。
output should just be
700 25.18752608 mW
710 26.83002734 mW
720 26.85955414 mW
730 23.63045233 mW
答案 0 :(得分:2)
我怀疑该文件有5行,而不是4行。
您对!feof()
的测试失败,因为当您尝试阅读第6行时尚未到达文件末尾。 fscanf
失败,但您没有测试返回值。因此,您将TI
和power
存储在2D数组的末尾之外,从而调用未定义的行为。
以这种方式更改加载代码应解决问题:
while (x < 5 && fscanf(fr, "%f %f %4s", &TI, &power, unit) == 3) {
a[x][0] = TI;
a[x][1] = power;
x++;
}
if (x != 5) {
printf("incomplete input\n");
}
答案 1 :(得分:0)
做chqrlie建议的工作。
“而不是while(!feof(fr))不正确,请使用while(fscanf(fr,”%f%f%4s“,&amp; TI,&amp; power,unit)== 3)”