首页 > 代码库 > c语言知识

c语言知识

用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语言知识