已关闭。此问题需要details or clarity。当前不接受答案。
**想要改进此问题?**添加详细信息并通过editing this post阐明问题。
八年前就关门了。
Improve this question
if(RS_ile==1)
{
if(RS_buf == 1) break;
if(RS_buf==49)
printf("1\n");
else
{
printf("%d\n", RS_buf);
fprintf (fp, "%d\n", RS_buf);
fclose (fp);
}
}
一切工作正常,但所有的数据被保存后,我关闭我的程序。所有我需要的是把日期文件,而程序正在运行,而不是关闭后。
操作系统Windows 8.1
1条答案
按热度按时间qxgroojn1#
在fprintf后面加上一个
fflush(fp) ;
。