Home » C Programming » Bitwise Operators

Assuming a integer 2-bytes, What will be the output of the program? #include<stdio.h> int main() { printf("%x\n", -1<<3); return 0; }

← Previous Next →

Discussion & Comments

No comments yet. Be the first to comment!