Page 1 of 1

1. What is the result of the following operations? (assume char is 8-bits) unsigned char x = 10; unsigned char y = 42; u

Posted: Fri Jul 08, 2022 6:39 am
by answerhappygod
1 What Is The Result Of The Following Operations Assume Char Is 8 Bits Unsigned Char X 10 Unsigned Char Y 42 U 1
1 What Is The Result Of The Following Operations Assume Char Is 8 Bits Unsigned Char X 10 Unsigned Char Y 42 U 1 (33.89 KiB) Viewed 24 times
1. What is the result of the following operations? (assume char is 8-bits) unsigned char x = 10; unsigned char y = 42; unsigned char z; a. z = x | y; b. z = x & y; C. Z = x^y; d. z = -x; e. z = x | (-y); f. zx & (-y); g. z=((-x) & (~y));