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.
我在 Windows 中使用 DEVC++ 和 CodeBlocks 运行 C 程序,并且代码没有更新。我刚刚添加了一条 printf 消息,它没有显示在输出中。我尝试了清理,重建,重新编译,一切。
请告诉我出了什么问题。
尝试在您的 printf 中添加换行符。有时(对于某些编译器),在打印换行符之前,输出不会刷新到屏幕上。
printf( "\n" );