Fork me on GitHub

 


if(freopen("e:\\lstm-comparec\\lstm\\lstm\\output.txt","a",stdout)==NULL)
fprintf(stderr,"errorredirectingstdout\n");

fclose(stdout);

 

重新打开:

windows:

freopen("CON", "w", stdout);

linux

freopen("/dev/stdout","w",stdout);

 

 

 672人阅读 评论(0) 收藏 举报

在ecplise下使用cdt开发c程序,发现运行后终端没有输出,停止后会输出,通过在main中添加

setbuf(stdout,NULL);

解决问题,原来是因为默认输出流存在buffer机制,通过上面语句, 取消buffer

更多0

 

 

fflush(stdout);

posted on 2014-04-17 09:50  huashiyiqike  阅读(391)  评论(0编辑  收藏  举报