InterviewSolution
Saved Bookmarks
| 1. |
Which of the following is corect way of constructing bitset using binary string?(a) bitset b;(b) bitset b(12);(c) bitset b(string(“1100”));(d) bitset b(float(12));This question was posed to me in an online quiz.This intriguing question comes from Bitset in chapter Class Hierarchies, Library & Containers of C++ |
|
Answer» CORRECT OPTION is (C) bitset Explanation: The correct way of constructing bitset using BINARY string is as follows: bitset |
|