Bitwise operator: ^ : binary bit « Data Types « C++ Tutorial






#include <iostream>
#include <iomanip>
using std::cout;
using std::endl;
using std::setfill;
using std::setw;

int main() {
  unsigned long red = 0XFF0000UL;      // Color red
  unsigned long white = 0XFFFFFFUL;    // Color white - RGB all maximum

  cout << std::hex;                    // Set hexadecimal output format
  cout << setfill('0');                // Set fill character for output

  unsigned long mask = red ^ white;

  cout << "\n        mask = red  white = " << setw(8) << mask;
  cout << "\n                mask  red = " << setw(8) << (mask ^ red);
  cout << "\n              mask  white = " << setw(8) << (mask ^ white);

  return 0;
}
mask = red ^ white = 0000ffff
                mask ^ red = 00ffffff
              mask ^ white = 00ff0000








2.13.binary bit
2.13.1.Printing an unsigned integer in bits
2.13.2.Display the bits within a byte.
2.13.3.Bitwise operators: Complement, AND, OR
2.13.4.Bitwise operator: ^
2.13.5.Use masks to select or set a particular flag bit