原 型:FILE *freopen(const char *filrname, const char *mode, FILE *stream);
头 文 件:stdio.h
说 明:在freopen函数关闭和stream相关的文件后,打开名为filename且与stream相关的文件。Mode参数具有和fopen函数调用中相同的含义。
返 回 值:如果操作成功,返回stream的值。如果无法打开文件则返回空指针。
相似函数:fopen
相关函数:fclose、setbuf、setvbuf