5. Assuming variables a and b are declared as signed character, with a = 0x5C and b = 0xE8. Evaluate the following C exp
Posted: Fri May 20, 2022 11:09 am
5. Assuming variables a and b are declared as signed character, with a = 0x5C and b = 0xE8. Evaluate the following C expressions and give the output value in either hexadecimal or TRUE/FALSE value. Show your result derivation. No Expression Output ) a) b) c=a & b; c = a || b; c= b >> 3; c) c= a + b--; d) e) f) c = a%b; c = (a<=b)? a: b;