Question: Write a sequence of C bitwise operations that will create the 3-nibble value RESULT, that is composed of the 0th, 3rd, and 6th nibble from

Write a sequence of C bitwise operations that will create the 3-nibble value RESULT, that is composed of the 0th, 3rd, and 6th nibble from the 32-bit quantity stored in the variable X. For example, if X is equal to 0xABCDEF98 (0x8 is the Oth nibble, E is the 3rd nibble, and B is the 6th nibble) your sequence should return 0x0BE8 in RESULT. You can assume X is declared as an int and RESULT is declared as an int
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
