Related Questions

Comment on the output of the following C code.
#include int main(){ int a = 1; switch (a) case 1: printf("%d", a); case 2: printf("%d", a); case 3: printf("%d", a); default: printf("%d", a);}
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" );
}