NVIDIA Interview Question

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

Interview Answers

Anonymous

Nov 4, 2011

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

2

Anonymous

Oct 1, 2011

You have to use left shift and right shift operator