Using STL how do I convert a variable to a binary string but with
special case which
for example BYTE x, i need only the first 3 bits of this byte, is that
possible?
to be more specific,
from that byte i want to generate (so valid values for x will be 0-5)
000
001
010
011
100
101
110 - not used
111 - not used
--
yl
special case which
for example BYTE x, i need only the first 3 bits of this byte, is that
possible?
to be more specific,
from that byte i want to generate (so valid values for x will be 0-5)
000
001
010
011
100
101
110 - not used
111 - not used
--
yl
Comment