Test site 2: the complement of negative number: the complement of negative number is the bit-by-bit inversion of its original code, except the sign bit; Then add 1 to the integer.
So let's look at it backwards:
The binary corresponding to 197 is:110001kloc-0/,regardless of the sign bit. Subtract1=11000100, and then negate all sign bits =1011,and the first bit is 65438. The following 01111is written as 10, which is equal to 32+ 16+8+2+ 1=59, so it is neutralized. Similarly, Char2 = 65438.
Good luck to the landlord!