Bitwise Operator

#include <iostream>
using namespace std;
int main() {
int a = 17;
int b = 15;
cout << "Bitwise Operators\n";
cout << "a & b = " << (a&b) <<endl;
}


Output of Program

No comments:

Post a Comment

Total Pageviews