I've tried searching with Google and reading Wikipedia, but none of them mentions if there is a command to pad a bit sequence with ones on the left/right. For instance, 01000 would become 010001111. I can do this with bit masking but my techniques are rather slow. So what's a standard way of doing this in C?
|
Output (ideone):
|
|||
|
|
|
To pad the value
|
|||
|
|
|
For both, I will use Right (least-significant) padding: I believe the fewest operations you can get away with is:
How did I get there? Start with shifting Left (most-significant padding):
First, we use |
|||
|
|