What will be the output of the following C++ code?
#include <iostream>
#include <bitset>
using namespace std;
int main()
{
bitset<8> b1(95);
bitset<8> b2(46);
cout<<(b1^b2);
}
#include <iostream>
#include <bitset>
using namespace std;
int main()
{
bitset<8> b1(95);
bitset<8> b2(46);
cout<<(b1^b2);
}
A. 00001101
B. 11111000
C. 01111111
D. 01110001
Answer: Option D
Join The Discussion