编程爱好者博客

VS输入输出重定向的问题

参考:https://blog.csdn.net/jiangxinnju/article/details/26081963

            https://blog.csdn.net/qq_29883591/article/details/69183999

因为在调试时候往往有大量输入不方面,因此引入输入重定向。

除了在VS项目属性,调试里更改,还可以在源代码中main函数前加入:

freopen("in.txt","r",stdin);

freopen("out.txt","w",stdout);

(注意该文件输入输出都存在与.c/.cpp相同的目录下。)

 

 

« Previous

rpm包的卸载与安装

Next »

爬虫基础之会话和Cookies

© 2024 编程爱好者博客. Generated with Hugo and Mainroad theme.