Question: Consider the C code below, with a and b being assigned hexadecimal numbers: char a = 0x65; char b 0x7e; char c a & b;

Consider the C code below, with a and b being assigned hexadecimal numbers: char a = 0x65; char b 0x7e; char c a & b; // Watchout for bitwise vs. logical operations What will be the value of c when the operation is performed in the code above? Include both hex digits and remember to add the Ox prefix. Final value of c= Ox
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
