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