2.59 Bit Expressions
★★
Problem:
Write a C expression that will yield a word consisting of the least significant byte of x
and the remaining bytes of y
. For operands x=0x89abcdef
and y=0x76543210
, this would give 0x765432ef
.
expression:
test:
Last updated