首页 > 代码库 > C语言文件方式输入与输出(最简洁方便实用的一种方式)

C语言文件方式输入与输出(最简洁方便实用的一种方式)

      freopen("inputfile.txt", "r", stdin);
      freopen("outputfile.txt", "w", stdout);

  、、、、、、、、、、、、、、

    fclose(stdin);
    fclose(stdout);
    return   0;

 

 

 

****************************************************************************************************

技术分享

C语言文件方式输入与输出(最简洁方便实用的一种方式)