What will be output if you will compile and execute the following c code? #include<stdio.h> int main(){
float a=5.2;
if(a==5.2)
printf("Equal");
else if(a<5.2)
printf("Less than");
else
printf("Greater than"); return 0;
}1.equal
2.less than
3.greater than
4. compiler error
Posted Date:-2022-07-06 13:35:59