如何清除代码块中的缓冲区?
我正在使用代码块,我需要一种良好且简单的方法来清除缓冲区。我使用 conio.h 库中的 getch() 进行输入。
I am using code blocks and i need a good and easy way to clear the buffer.I am using getch() form the conio.h library for input.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
尝试这个未经测试的代码:
Try this untested code:
你可以使用 fflush(stdin);清除流。
u can use fflush(stdin); to clear the stream.