Top

Discussion

What is the output of this C code?    

int main()
    {
        unsigned int a = 10;
        a = ~a;
        printf("%d\n", a);
    }

 

  • A.-9
  • B.-10
  • C.-11
  • D.10

Answer: C

No answer description available for this question.

No comment is present. Be the first to comment.
Loading…

Post your comment