Demonstrate boolalpha format flag. : cout boolalpha « Console « C++






Demonstrate boolalpha format flag.

Demonstrate boolalpha format flag.

#include <iostream>
using namespace std;

int main()
{
  bool b;

  cout << "Before setting boolalpha flag: ";
  b = true;
  cout << b << " ";
  b = false;
  cout << b << endl;

  cout << "After setting boolalpha flag: ";
  b = true;
  cout << boolalpha << b << " ";
  b = false;
  cout << b << endl;

  cout << "Enter a Boolean value: ";
  cin >> boolalpha >> b; // you can enter true or false
  cout << "You entered " << b;

  return 0;
}


           
       








Related examples in the same category

1.boolapha: true and false values to be input and outputboolapha: true and false values to be input and output