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(){
float a=12.25, b=13.65;
if(a=b)
printf("a and b are equal");
else
printf("a and b are not equal");
return 0;
}

A. compiler error
B. a and b are equal
C. a and b are not equal
D. No output