How To Clear Stdin In C

[Solved] How To Clear Stdin In C | C - Code Explorer | yomemimo.com
Question : c++ flush stdin

Answered by : big-moby

fflush(stdin);

Source : | Last Update : Sun, 11 Oct 20

Question : how to clear stdin in c

Answered by : terrible-toucan-n4xnbq5yqfda

fseek(stdin, 0, SEEK_END);

Source : | Last Update : Sun, 24 Apr 22

Answers related to how to clear stdin in c

Code Explorer Popular Question For C