How to clear the input buffer In C/C++.

What is a buffer? 

A temporary storage area is called a buffer. All standard input and output devices contain an input and output buffer. In standard C/C++, streams are buffered, for example in the case of standard input, when we press the key on the keyboard, it isn’t sent to your program, rather it is buffered by the operating system till the time is allotted to that program.

How does it affect Programming? 

On various occasions, you may need to clear the unwanted buffer so as to get the next input in the desired container and not in the buffer of the previous variable. For example, in the case of C after encountering “scanf()”, if we need to input a character array or character, and in the case of C++, after encountering the “cin” statement, we require to input a character array or a string, we require to clear the input buffer or else the desired input is occupied by a buffer of the previous variable, not by the desired container. On pressing “Enter” (carriage return) on the output screen after the first input, as the buffer of the previous variable was the space for a new container(as we didn’t clear it), the program skips the following input of the container.

In the case of C Programming 

 

// C Code to explain why not
// clearing the input buffer
// causes undesired outputs
#include
int main()
{
	char str[80], ch;
	
	// Scan input from user -
	// GeeksforGeeks for example
	scanf("%s", str);
	
	// Scan character from user-
	// 'a' for example
	ch = getchar();
	
	// Printing character array,
	// prints “GeeksforGeeks”)
	printf("%s\n", str);
	
	// This does not print
	// character 'a'
	printf("%c", ch);
	
	return 0;
}

Input: 

GeeksforGeeks
a

Output: 

GeeksforGeeks

In the case of C++ 

 

// C++ Code to explain why
// not clearing the input
// buffer causes undesired
// outputs
#include
#include
using namespace std;

int main()
{
	int a;
	char ch[80];
	
	// Enter input from user
	// - 4 for example
	cin >> a;
	
	// Get input from user -
	// "GeeksforGeeks" for example
	cin.getline(ch,80);
	
	// Prints 4
	cout << a << endl;
	
	// Printing string : This does
	// not print string
	cout << ch << endl;
	
	return 0;
}

Input: 

4
GeeksforGeeks

Output: 

4

In both the above codes, the output is not printed as desired. The reason for this is an occupied Buffer. The “\n” character goes remains there in buffer and is read as the next input.

In the case of C :  

1. Using “ while ((getchar()) != ‘\n’); ” : Typing “while ((getchar()) != ‘\n’);” reads the buffer characters till the end and discards them(including newline) and using it after the “scanf()” statement clears the input buffer and allows the input in the desired container.

 

// C Code to explain why adding
// "while ( (getchar()) != '\n');"
// after "scanf()" statement
// flushes the input buffer
#include

int main()
{
	char str[80], ch;
	
	// scan input from user -
	// GeeksforGeeks for example
	scanf("%s", str);
	
	// flushes the standard input
	// (clears the input buffer)
	while ((getchar()) != '\n');
	
	// scan character from user -
	// 'a' for example
	ch = getchar();
	
	// Printing character array,
	// prints “GeeksforGeeks”)
	printf("%s\n", str);
	
	// Printing character a: It
	// will print 'a' this time
	printf("%c", ch);

	return 0;
}

Input: 

GeeksforGeeks
a

Output: 

GeeksforGeeks
a

2. Using “ fflush(stdin) ”: Typing “fflush(stdin)” after “scanf()” statement also clears the input buffer but use of it is avoided and is termed to be “undefined” for input stream as per the C++11 standards.

In the case of C++ :  

1. Using “ cin.ignore(numeric_limits::max(),’\n’); ” :- Typing “cin.ignore(numeric_limits::max(),’\n’);” after the “cin” statement discards everything in the input stream including the newline.

 

// C++ Code to explain how
// "cin.ignore(numeric_limits
// ::max(),'\n');"
// discards the input buffer
#include

// for 
#include	

// for numeric_limits
#include
using namespace std;

int main()
{
	int a;
	char str[80];
	
	// Enter input from user
	// - 4 for example
	cin >> a;
	
	// discards the input buffer
	cin.ignore(numeric_limits::max(),'\n');
	
	// Get input from user -
	// GeeksforGeeks for example
	cin.getline(str, 80);
	
	// Prints 4
	cout << a << endl;
	
	// Printing string : This
	// will print string now
	cout << str << endl;

	return 0;
}

Input: 

4
GeeksforGeeks

Output: 

4
GeeksforGeeks

2. Using “ cin.sync() ”: Typing “cin.sync()” after the “cin” statement discards all that is left in the buffer. Though “cin.sync()” does not work in all implementations (According to C++11 and above standards). 

// C++ Code to explain how " cin.sync();"
// discards the input buffer
#include
#include	
#include
using namespace std;

int main()
{
	int a;
	char str[80];
	
	// Enter input from user
	// - 4 for example
	cin >> a;
	
	// Discards the input buffer
	cin.sync();
	
	// Get input from user -
	// GeeksforGeeks for example
	cin.getline(str, 80);
	
	// Prints 4
	cout << a << endl;
	
	// Printing string - this
	// will print string now
	cout << str << endl;

	return 0;
}

Input: 

4
GeeksforGeeks

Output: 

4

3. Using “ cin >> ws ”: Typing “cin>>ws” after “cin” statement tells the compiler to ignore buffer and also to discard all the whitespaces before the actual content of string or character array. 

 

// C++ Code to explain how "cin >> ws"
// discards the input buffer along with
// initial white spaces of string

#include
#include
using namespace std;

int main()
{
	int a;
	string s;
	
	// Enter input from user -
	// 4 for example
	cin >> a;
	
	// Discards the input buffer and
	// initial white spaces of string
	cin >> ws;
	
	// Get input from user -
	// GeeksforGeeks for example
	getline(cin, s);
	
	// Prints 4 and GeeksforGeeks :
	// will execute print a and s
	cout << a << endl;
	cout << s << endl;

	return 0;
}

 

Submit Your Programming Assignment Details