Set all bits

suggest change

C-style bit-manipulation

x = -1; // -1 == 1111 1111 ... 1111b

(See here for an explanation of why this works and is actually the best approach.)

Using std::bitset

std::bitset<10> x;
x.set(); // Sets all bits to '1'

Feedback about page:

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



Table Of Contents