The noboolalpha() method of stream manipulators in C++ is used to get the integral value of boolapha format flag for the specified str stream.
Syntax:
ios_base& noboolalpha (ios_base& str)
Parameters: This method accepts str as a parameter which is the stream for which the format flag is fetched.
Return Value: This method returns the stream str with noboolalpha format flag .
Example 1:
#include <iostream>
using namespace std;
int main()
{
bool flag = true ;
cout << "noboolalpha flag: "
<< noboolalpha << flag << endl;
return 0;
}
|
Output:
noboolalpha flag: 1
Example 2:
#include <iostream>
using namespace std;
int main()
{
bool flag = false ;
cout << "noboolalpha flag: "
<< noboolalpha << flag << endl;
return 0;
}
|
Output:
noboolalpha flag: 0
Reference: http://www.cplusplus.com/reference/ios/noboolalpha/