Aug 30, 2012 at 12:33pm
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
Aug 30, 2012 at 12:41pm
i compiled this code and got the answer as "i hate you".
Thank you for your reply iHutch105