#include <stdio.h>
int main()
{
float num1,sum;
int num2;
printf("Enter The First Float Value : ");
scanf("%f",&num1);
printf("%f \n",num1);
printf("Enter The Second integer Value : ");
scanf("%i",&num2);
printf("%i",num2);
sum=num1+num2;
printf("\n---------------------------------------\n");
printf("The sum of Two numbers is : %f \n",sum);
}
To embed this project on your website, copy the following code and paste it into your website's HTML: