The boolalpha() method of stream manipulators in C++ is used to set the boolalpha format flag for the specified str stream.
Syntax:
CPP
CPP
ios_base& boolalpha (ios_base& str)Parameters: This method accepts str as a a parameter which is the stream for which the format flag is affected. Return Value: This method returns the stream str with boolalpha format flag set. Example 1:
// C++ code to demonstrate
// the working of boolalpha() function
#include <iostream>
using namespace std;
int main()
{
// Initializing the boolean flag
bool flag = true;
// Using boolalpha()
cout << "boolalpha flag: "
<< boolalpha << flag << endl;
return 0;
}
Output:
Example 2:
boolalpha flag: true
// C++ code to demonstrate
// the working of boolalpha() function
#include <iostream>
using namespace std;
int main()
{
// Initializing the boolean flag
bool flag = false;
// Using boolalpha()
cout << "boolalpha flag: "
<< boolalpha << flag << endl;
return 0;
}
Output:
Reference: https://cplusplus.com/reference/ios/boolalpha/boolalpha flag: false