#define clrscr() 100
main()
{
clrscr();
printf( "%dn", clrscr() );
}
enum colors {BLACK,BLUE,GREEN}
printf( "%d..%d..%d", BLACK, BLUE, GREEN );
return(1);
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" );}
Please disable the adBlock and continue. Thank you.