What will be output of the following “c” code?

		
					

Loading

โœช Choose the correct option.

What will be output of the following “c” code?


#include
void main ( )
{
int a=500, b=100,c;
if( !(a>=400))
b=200;
c=200;
printf( "%d %d", b,c);
}

A. 200 100
B. 100 200
C. 200 200
D. Compilation Error