问题在第 7 行:int ret=3, x, y;
如果我先声明 y(如第 8 行),结果会有所不同
在我的电脑上现在只打印 Y 值,随着声明中的这个变化,只打印 X 的值
生成文件
gcc -g -o open_file_test open_file_test.c;
./pen_file_test input
代码:
#include <stdio.h>
#include <stdlib.h>
int worldsize = 0;
int main(int argc, char const *argv[]){
int ret=3, x, y;
//int ret=3, y, x;
char chr;
int teste;
FILE * inputFile;
inputFile = fopen(argv[1],"r");
teste = fscanf(inputFile,"%d", &worldsize);
printf("Tamanho: %d\n", worldsize);
while(1){
ret=fscanf(inputFile,"%d %d %s\n", &x, &y, &chr);
if(ret != 3)
break;
printf("x: %d y: %d\n", x, y);
}
printf("End File :D\n");
return 0;
}
输入文件
10 1 0 w 2 1 s 6 9 w 3 7 w 5 0 s 1 5 t 1 5 t 7 5 t 9 7 t 9 3 t 0 0 i
输出
Tamanho: 10 x: 0 y: 0 x: 0 y: 1 x: 0 y: 9 x: 0 y: 7 x: 0 y: 0 x: 0 y: 5 x: 0 y: 5 x: 0 y: 5 x: 0 y: 7 x: 0 y: 3 x: 0 y: 0 End File :D
在我的计算机上只读取 Y,而我同事计算机上的相同代码只读取 X,而在另一个朋友的计算机上工作正常(读取 X 和 Y),有人可以解释原因吗?