本文介绍了如何在do..while()循环中使用gets()函数?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

执行一个循环后,'gets()'函数在'do ... while'循环内无效

the 'gets()' function is not working inside a 'do ...while' loop after one cycle of execution

推荐答案





而不是使用gets()使用fgets(),因为gets()可能导致缓冲空间超过运行。


instead of using gets() use fgets() as gets() may results in buffer space over run.


这篇关于如何在do..while()循环中使用gets()函数?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

09-13 12:40