Answers for "bitset string c++"

C++
1

how to put bitset into a string in c++

#include <iostream>
#include <bitset>
int main()
{
    std::bitset<8> b(42);
    std::cout << b.to_string() << 'n'
              << b.to_string('*') << 'n'
              << b.to_string('O', 'X') << 'n';
}
Posted by: Guest on February-10-2021
1

bitset c++

// Instantiating and printing a bitset

#include <iostream>
#include <bitset>

int main() {
  	// A bitset. The size must be able to be determined
  	// at compile time.
  	//
  	// The bitset can be set using a number or a string
	std::bitset<8> byte1 = bitset<8>(97);
  	std::bitset<8> byte2 = bitset<8>("0001101")
  
  	std::cout << byte1; // Output: 01100001
}
Posted by: Guest on January-26-2021

Browse Popular Code Answers by Language