c stdout 打印没有换行?
我想打印“客户>”在 c 中的标准输出上,没有新行。
printf("客户端>");
不打印任何内容。
我该如何解决这个问题?
int main (){
printf("CLIENT>");
}
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
在
fflush(stdout);
> printf 。如果您发现自己经常调用
fflush
并且希望避免完全调用它,您也可以调查setvbuf
。请注意,如果您将大量输出写入标准输出,那么使用 setvbuf 可能会降低性能。Try
fflush(stdout);
after yourprintf
.You can also investigate
setvbuf
if you find yourself callingfflush
frequently and want to avoid having to call it altogether. Be aware that if you are writing lots of output to standard output then there will probably be a performance penalty to usingsetvbuf
.在
printf()
之后调用fflush
:Call
fflush
afterprintf()
:在某些编译器/运行时库(通常是较旧的)上,您必须调用 fflush 才能获得物理写入的数据:
如果数据末尾有换行符,通常不需要 fflush - 即使在较旧的系统上也是如此。
On some compilers/runtime libraries (usually the older ones) you have to call fflush to have the data physically written:
If the data has newline in the end, usually
fflush
isn't needed - even on the older systems.