Setting a bit

suggest change

C-style bit manipulation

A bit can be set using the bitwise OR operator (|).

// Bit x will be set
number |= 1LL << x;

Using std::bitset

set(x) or set(x,true) - sets bit at position x to 1.

std::bitset<5> num(std::string("01100"));
num.set(0);      // num is now 01101
num.set(2);      // num is still 01101
num.set(4,true); // num is now 11110

Feedback about page:

Feedback:
Optional: your email if you want me to get back to you:


Bit manipulation:
* Setting a bit

Table Of Contents
6 Bit manipulation
8 Arrays
11 Loops
39 Streams
51 Unions
56 Lambdas
60 SFINAE
62 RAII
67 Sorting
84 RTTI
87 Scopes
104 Profiling
107 Recursion
117 Iteration
125 Alignment
134 Semaphore
136 Debugging
139 Mutexes
142 decltype