本文介绍了结束行字符未执行的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧! 问题描述 我设计了一个基于对话框的MFC应用程序,其中有''\ n''新行字符的条件,它在我的桌面上执行但它不能在其他机器上运行!我编写代码如下: I have designed one dialogue based MFC application, in which there is condition on ''\n'' new line character,it executed on my desktop but it not working on other machines!I write code as given below:fprintf(fp_out,"%c",c5); fprintf(fp_out,"%c",c6); fprintf(fp_out,"%c",c7); fprintf(fp_out,"%c",c8); fprintf(fp_out,"%c",'\n'); 最后一行''\ n''执行时需要两个字节,为什么它不能在其他机器上工作!那有什么具体条件吗?请建议 提前致谢!Last line ''\n'' takes two bytes while executing,why it not working on others machines! is there any specific condition for that? please suggestThanks in advance!推荐答案 这篇关于结束行字符未执行的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!
10-16 21:33