What is the output of this C code?
int main() { unsigned int a = 10; a = ~a; printf("%d\n", a); }
Answer: C
No answer description available for this question.