The unitbuf() method of stream manipulators in C++ is used to set the unitbuf format flag for the specified str stream. This flag flushes the associated buffer after each operation.
Syntax:
ios_base& unitbuf (ios_base& str)
Parameters: This method accepts str as a parameter which is the stream for which the format flag is affected.
Return Value: This method returns the stream str with unitbuf format flag set.
Example 1:
#include <iostream>
#include <sstream>
using namespace std;
int main()
{
char a, b, c;
istringstream iss( "GFG" );
iss >> unitbuf >> a >> b >> c;
cout << "unitbuf flag: "
<< a << endl
<< b << endl
<< c << endl;
return 0;
}
|
Output:
unitbuf flag: G
F
G
Example 2:
#include <iostream>
#include <sstream>
using namespace std;
int main()
{
char a, b, c, d, e;
istringstream iss( "GEEKS" );
iss >> unitbuf >> a >> b >> c >> d >> e;
cout << "unitbuf flag: "
<< a << endl
<< b << endl
<< c << endl
<< d << endl
<< e << endl;
return 0;
}
|
Output:
unitbuf flag: G
E
E
K
S
Reference: http://www.cplusplus.com/reference/ios/unitbuf/