1.

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

A. bitset<size> b;
B. bitset<size> b(12);
C. bitset<size> b(string( 1100 ));
D. bitset<size> b(float(12));
Answer» C. bitset<size> b(string( 1100 ));


Discussion

No Comment Found