Complete the results assignment statment with a C expression
Complete the results assignment statment with a C expression to clear bit 23 of target.
typedef ubsigned int ui32;
int main (void)
{
ui32 target = 0xa1b2c3d4;
ui32 results;
resullts = ???
return 0;
}
results = ?
What value in hex is assigned to the variable results?
Solution
target = 10010001101000101011001111000100
ui32 fact=0xa122c3d4;
results = target&fact;
