C语言文件形式输入与输出(最简洁方便实用的一种方式)
C语言文件方式输入与输出(最简洁方便实用的一种方式)
freopen("inputfile.txt", "r", stdin); freopen("outputfile.txt", "w", stdout); 、、、、、、、、、、、、、、 fclose(stdin); fclose(stdout); return 0;
****************************************************************************************************