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:01Z

Updated

2019-03-27T06:44:01Z

#include <iostream>
#include <string>

int main(int argc, char **argv) {
    int a = 5;     // 0101b  (0x05)
    int b = 9;     // 1001b  (0x09)
    int c = a ^ b; // 1100b  (0x0C)
    
    std::cout << "a = " << a << ", b = " << b << ", c = " << c << std::endl;
}
INFO