Skip to content

Instantly share code, notes, and snippets.

@longyue0521
Created September 14, 2017 09:36
Show Gist options
  • Select an option

  • Save longyue0521/d06811d3b90cb56764cd3771b56777d0 to your computer and use it in GitHub Desktop.

Select an option

Save longyue0521/d06811d3b90cb56764cd3771b56777d0 to your computer and use it in GitHub Desktop.
clear standard input buffer
#include <stdio.h>
void clear_stdin_buffer() {
char ch;
while( (ch = getchar()) != '\n' && ch != EOF );
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment