โช 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;
}