What is the output of the given program snippet in C Language?
main()
{
int a=0.5,c=0.5;
float b=2,d=4;
if(b=d&&a++<=c) printf(This is true);
else
printf(This is false);
}
Reveal answer
Fill a bubble to check yourself
What is the output of the given program snippet in C Language?
main()
{
int a=0.5,c=0.5;
float b=2,d=4;
if(b=d&&a++<=c) printf(This is true);
else
printf(This is false);
}