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
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));