void main() { unsigned int x=-1; int y; y = ~0; if(x == y) printf("same"); else printf("not same"); }
Reveal answer
Fill a bubble to check yourself
void main() { unsigned int x=-1; int y; y = ~0; if(x == y) printf("same"); else printf("not same"); }