#include<stdio.h>
int main()
{
float a,b,c;
printf("Enter the number of a,b");
scanf("%f%f",&a,&b);
c=a-b;
printf("calculate of %f",c);
return 0;
}
0 Comments