197 and 198 exceed 127, which are regarded as complements (negative numbers).
If you use unsigned characters, you can use +255.
Unsigned characters c 1, C2;
c 1 = 197;
C2 = 198;
printf("c 1=%d,c2=%d\n ",c 1,C2);
This will not print negative values.