Question:What would be printed on the standard output as a result of the following code snippet?
void main() { unsigned char a=25; a = ~a; signed char b = 25; b = ~b; printf("%d %d ", a, b); }
A 0 0
B 230 230
C 230 -26
D 230 -103
E None
+ AnswerC
+ Report