首页 > 其他 > 详细

VS2015 中使用freopen_s

时间:2017-05-31 19:59:27      阅读:1027      评论:0      收藏:0      [点我收藏+]

在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

原文:http://www.cnblogs.com/Vincent-Bryan/p/6925639.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!