Page 1 of 1

(2) int x, y; Assume x has been set to some unknown value. Perform the indicated operation on x and assign the value to

Posted: Thu May 05, 2022 1:37 pm
by answerhappygod
2 Int X Y Assume X Has Been Set To Some Unknown Value Perform The Indicated Operation On X And Assign The Value To 1
2 Int X Y Assume X Has Been Set To Some Unknown Value Perform The Indicated Operation On X And Assign The Value To 1 (15.85 KiB) Viewed 35 times
In C please, thank you
(2) int x, y; Assume x has been set to some unknown value. Perform the indicated operation on x and assign the value to y. Example: Set bits 0 and 7 of x Example: Clear bits 0 and 7 of x Answer: y = x & ~0b10000001; Answer: y = x | 0b10000001; Example: Shift x right 2 places Answer: y = x >> 2; (a) Set bits 2 and 6 of x. (b) Clear bits 0, 3, 4, and 7 of x. (c) Toggle bits 1, 3, 5, and 7 of x. (d) Toggle all the bits of x. (e) Shift x left three bits.