How do I clear the cin buffer in C++?
|
feedback
|
|
possibly:
this would read in and ignore everything until Also: You probably want to do a: | |||||||
feedback
|
|
I would prefer the C++ size constraints over the C versions:
| |||||
feedback
|
|
How about:
| ||||
feedback
|
| ||||
|
feedback
|
|
The following should work:
On some systems it's not available and then you can use:
| |||||||||
feedback
|
|
Many of the answers were "ignore()", but ignore() doen't mean flushing the buffer. If there is nothing left in the buffer, ignore() wait for more inputs (at least a delimiter, like '\n'). The buffer flushing method is simply istream::sync(). Why no one's ever mentioned it??? | |||||
feedback
|
|
I prefer:
There's an example where cin.ignore just doesn't cut it, but I can't think of it at the moment. | ||||
feedback
|