Home » C Programming » Bitwise Operators

If an unsigned int is 2 bytes wide then, What will be the output of the program? #include<stdio.h> int main() { unsigned int m = 32; printf("%x\n", ~m); return 0; }

← Previous Next →

Discussion & Comments

No comments yet. Be the first to comment!