Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

For a 32 bit integer, how do I set say k low order bits in C?

share|improve this question
3  
Why is this question closed? – Kay Jun 21 '11 at 10:09

4 Answers

up vote 1 down vote accepted

something along the lines of

set k lower bits:

while (k) {
    k--;
    num |= (1<<k);
}

Is that what you meant?

share|improve this answer

Assuming you want to set the k lowest bits of a 32-bit integer x, I believe this will work:

if( k > 0 ) {
    x |= (0xffffffffu >> (32-k))
}
share|improve this answer
3  
+1 very nice and fast. – hexa Jun 21 '11 at 0:57
2  
+1 nice, but I would an unsigned literal 0xffffffffu just to make sure that the compiler does not try to replicate the sign bit. – Richard Schneider Jun 21 '11 at 1:00
4  
Is it ok if I giggle a little at 0xffffffffu? :P – hexa Jun 21 '11 at 1:34
3  
Note that this will fail for k = 0 (shifting a 32 bit operand by 32 or more bits is undefined behaviour). – caf Jun 21 '11 at 1:43
2  
@user not at all. It would OR with 0s, doing nothing to the lower bits. x |= ~(0xffffffff << k) would tho'. – hexa Jun 21 '11 at 1:56
show 4 more comments

To set n least significant bits in k, you could use arithmetic:

k |= (1 << n) - 1;

(Provided n is less or equal your int size in bits.)

share|improve this answer
That would wipe out the existing bits. – AresAvatar Jun 21 '11 at 0:56
@Ares: Updated. Use ORing not to wipe out existing bits. – Kay Jun 21 '11 at 0:57
Ah, good. +1 then. – AresAvatar Jun 21 '11 at 0:59
2  
This fails if n is equal to the width of the int type. – caf Jun 21 '11 at 1:45
@caf: why does it fail? – Neil G Jun 21 '11 at 6:19
show 5 more comments
int bitmask = 1;
for (ix = 0;  ix < k;  ++ix)
{
    C = C | bitmask;
    bitmask <<= 1;
}
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.