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

Join The Discussion