

MCQOPTIONS
Saved Bookmarks
1. |
Which of the following is corect way of constructing bitset using binary string? |
A. | bitset<size> b; |
B. | bitset<size> b(12); |
C. | bitset<size> b(string( 1100 )); |
D. | bitset<size> b(float(12)); |
Answer» D. bitset<size> b(float(12)); | |