我必须编程以从输入文本文件中读取一些值。
int main(){
FILE *pf;
int i;
int j;
pf = fopen("input.txt" , "r");
fscanf(pf ,"%d , %d" , &i ,&j );
printf("%d ,%d\n" , i ,j);
fclose(pf);
}
Input.txt 有一些值。任何人都可以建议我在运行程序后获取 input.txt 的方法。
例如 :
Open a terminal
compile the code
Run the code
---Here it should ask for the file name---