i know this is simple program but why output is B?
Code:
void main(){
	float a;
	a=6.7;
	if(a==6.7)
	printf("A");
	else
	printf("B");
}