fflush() is not working in Linux

前端 未结 9 830
后悔当初
后悔当初 2020-12-08 05:43

I used the fflush() in Linux GCC but it did not work. Are there any alternatives for that function? Here is my code:

#include
void main()
{
           


        
9条回答
  •  生来不讨喜
    2020-12-08 06:33

    I faced the same problem while working on LINUX and an alternative solution of this problem can be that you define a dummy character lets say char dummy; and put a scanf() to scan it just before your actual input takes place. This worked for me. I hope it would work for you too.

提交回复
热议问题