Quick actions

cmd+k|ctrl+k

Navigation

Languages

Bit operators / ^ - bitwise XOR (exclusive OR) / Essential C++

Snippet info

Language

Cpp

Visibility

public

Author

kkowalczyk

Created

2019-03-27T06:44:03Z

Updated

2019-03-27T06:44:03Z

#include <iostream>

int main(int argc, char **argv) {
    int a = 5;  // 0101b  (0x05)
    a ^= 9;    // a = 0101b ^ 1001b

    std::cout << "a = " << a << std::endl;
}
INFO