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 = b1 << 3;
cout<<b2;
}
#include <iostream>
#include <bitset>
using namespace std;
int main()
{
bitset<8> b1(95);
bitset<8> b2 = b1 << 3;
cout<<b2;
}
A. 01110001
B. 11111000
C. 01111111
D. 00001101
Answer: Option B
Join The Discussion