Vidyalelo
C++ Programming · Q243

C++ miscellaneous

Programming · C++ Programming · question 243

Q243

What will be the output of the following C++ code? #include #include using namespace std; int main() bitset b1(20); cout<<b1.none(); cout<<b1.any();

A.
01
Answer
B.
00
C.
10
D.
11

Answer: Option A

Solution

Answer: Option A
No explanation is given for this question Let's Discuss on Board