Home » Technical Questions » Programming

What will be output when you will execute following c code? #include void main() { signed int a = -1; unsigned int b = -1u; if(a == b) printf( "The Lord of the Rings" ); else printf( "American Beauty" ); }

← Previous Next →

Discussion & Comments

No comments yet. Be the first to comment!