NVIDIA interview question

Bit manipulation question - given 32 bit integer, return the bits between 24th and 27th bit position

Interview Answers

Anonymous

4 Nov 2011

#define BIT24TO27(x) (x>>24 & 0xF) this macro will give you desired result.

2

Anonymous

1 Oct 2011

You have to use left shift and right shift operator