Question: Suppose x is a variable of type int (4 bytes). Which of the following assignments would ensure that y holds the value 1 if x
Suppose x is a variable of type int (4 bytes). Which of the following assignments would ensure that y holds the value 1 if x is negative and 0 otherwise?
Question options:
| y = (x >> 31) | |
| y = (x & 0x80000000) >> 31 | |
| y = x & 0x80000000 | |
| y = (x >> 31) & 0x1 |
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
