2014-04-17 96 views

回答

1

您可以使用freopen()

// code copied from the link 
#include <stdio.h> 
... 
FILE *fp; 
... 
fp = freopen ("/tmp/logfile", "a+", stdout); 
... 
相關問題