Header Ads Widget

Responsive Advertisement

From float how to calculate two numbers of difference

 #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;

}


Post a Comment

0 Comments