Which of the following is corect way of constructing bitset using binary string?

Which of the following is corect way of constructing bitset using binary string? Correct Answer bitset<size> b(string(“1100”));

The correct way of constructing bitset using binary string is as follows: bitset b(string(“1100”));

Related Questions

Which of the following is corect way of constructing bitset using integer number?
Which is the correct syntax of constructing a bitset?