Top

Discussion

If an unsigned int is 2 bytes wide then, What will be the output of the program ?

#include

int main()
{
    unsigned int m = 32;
    printf("%x\n", ~m);
    return 0;
}

 

  • A.ffff
  • B.0000
  • C.ffdf
  • D.ddfd

Answer: C

No answer description available for this question.

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

Post your comment