Quick actions

cmd+k|ctrl+k

Navigation

Languages

Bit operators / | - bitwise OR / Essential C++

Snippet info

Language

Cpp

Visibility

public

Author

kkowalczyk

Created

2019-03-27T06:43:59Z

Updated

2019-03-27T06:43:59Z

#include <iostream>
#include <string>

int main(int argc, char **argv) {
    int a = 5;  // 0101b  (0x05)
    a |= 12;    // a = 0101b | 1101b == 13

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