Which is the correct syntax of constructing a bitset?
Posted: Wed Jul 13, 2022 7:53 pm
a) bitset<size> b;
b) bitset<size> b(12);
c) bitset<size> b(string(“1100”));
d) all of the mentioned
b) bitset<size> b(12);
c) bitset<size> b(string(“1100”));
d) all of the mentioned