码迷,mamicode.com
首页 > 编程语言 > 详细

c语言知识

时间:2016-11-05 09:20:51      阅读:177      评论:0      收藏:0      [点我收藏+]

标签:字符   strong   文件路径   语言   steam   txt   重定向   rest   open   

用freopen重定向输入

freopen函数以指定模式重新指定到另一个文件,模式用于指定新文件的访问方式。

FILE *freopen(const char * restrict filename, const char * restrict mode, FILE * restrict stream);

filename:文件名或文件路径,mode:文件访问权限字符串("r"只读,“w”只写,“a”追加写入),steam:需要被重定向的文件流。

eg:freopen("c:\\tmp\\test.txt", "r", stdin);

 

c语言知识

标签:字符   strong   文件路径   语言   steam   txt   重定向   rest   open   

原文地址:http://www.cnblogs.com/wshyj/p/6032367.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!