Question: 2.Write code for the function with the following prototype /* * anyEvenBit - return 1 if any even-numbered bit in word set to 1 *
2.Write code for the function with the following prototype
/* * anyEvenBit - return 1 if any even-numbered bit in word set to 1 * Examples anyEvenBit(0xA) = 0, anyEvenBit(0xE) = 1 * Legal ops: ! ~ & ^ | + << >> */ int anyEvenBit(int x)
(Your solution should conform to the rules listed above) .
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
