Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我编写简单的控制台函数并使用 freopen 将 printf 语句重定向到文件。是否可以“关闭”文件的输出,并且稍后在代码中将 printf 输出重定向回控制台窗口?
fprintf让您打印到特定的文件流。例如,
fprintf
fprintf(stdout, "message");
printmessage在标准输出(控制台)中,所以...如您所见,printf只是fprintf.
message
printf
我希望这会有所帮助。