#include <stdio.h>
int main()
{
double value1,value2;
printf("ENTER THE NUMBERS:\n");
scanf("%lf",&value1);
scanf("%lf",&value2);
if(value1==value2)
{
printf("THE VALUES ARE EQAUL:\n");
}
else(value1<value2)
{
printf("%2lf is bigger than value1:\n");
}
else if(value1>value2)
{
printf("value1 is bigger than value2:\n");
}
return 0;
}
To embed this project on your website, copy the following code and paste it into your website's HTML: