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 x=3, y=4, z=4;
printf("ans=%d ",z>=y>=x ?10:20);
return 0;
}

A. ans=0
B. ans=10
C. ans=20
D. Compiler Error