main()
{
float me = 1.1;
double you = 1.1;
if(me==you)
printf("I love U");
else
printf("I hate U");
}
what is the output of the above program and please explain how
i compiled this code and got the answer as "i hate you".
Thank you for your reply iHutch105