← Back to Question List
C++ Code Walkthrough #26
Bitwise AND, OR, XOR
📄 Code
Read carefully — what does this print?1#include <iostream>2using namespace std;3int main() {4 int a = 6, b = 3;5 cout << (a & b) << " " << (a | b) << " " << (a ^ b) << endl;6 return 0;7}