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" );
}

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

Related Questions