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

Run Settings
LanguageC++
Language Version
Run Command
#include <iostream> #include <string> int main(int argc, char **argv) { int a = 5; // 0101b (0x05) int b = 12; // 1100b (0x0C) int c = a | b; // 1101b (0x0D) std::cout << "a = " << a << ", b = " << b << ", c = " << c << std::endl; }
Editor Settings
Theme
Key bindings
Full width
Lines