What will be output of the following “c” code?
Practice Variable Number of Arguments – What will be output of the following “c” code?
#include
void main()
{
float me = 1.1;
double you = 1.1;
if(me==you)
printf("I love U");
else
printf("I hate U");
}