VS2015 中使用freopen_s
Posted Vincent_Bryan
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了VS2015 中使用freopen_s相关的知识,希望对你有一定的参考价值。
在VS2015中直接使用freopen会报错,系统提示使用函数freopen_s作为代替,其使用方法如下:
#include "stdafx.h" #include <stdio.h> #include <stdlib.h> #include <iostream> using namespace std; int main(){ FILE *stream1, *stream2; fopen_s(&stream1, "input.txt", "r"); fopen_s(&stream2, "output.txt", "w"); int n; fscanf_s(stream1, "%d", &n);//从stream1中读取一个int fprintf(stream2, "%d", n); //将int输出到stream2 fclose(stream1); fclose(stream2); return 0; }
以上是关于VS2015 中使用freopen_s的主要内容,如果未能解决你的问题,请参考以下文章