What will be the output of the following program on GCC?

		
					

Loading

โœช Choose the correct option.

What will be the output of the following program on GCC?

#include 
int main(){
int a=12,n=20;
a=(a=5 && n=4?1:0);
printf("a=%d ",a);
return 0;
}

A. a=1
B. a=0
C. a=5
D. Compiler Error