C program for addition of two numbers in which one is integer and other one is floating

#include<stdio.h>
#include<conio.h>
void main()
{
int a;
float b,c;
puts("Enter the integer number");
scanf("%d",&a);
puts("Enter the floating number");
scanf("%f",&b);
c=a+b;
puts("Addition is");
printf("%d+%f=%f",a,b,c);
}

Comments