Header Ads Widget

Responsive Advertisement

From foalt how to calculate two number of sum.

 #include<stdio.h>

int main()

{

    float a,b,c;


    printf("Enter number of a\n");

    printf("Enter number of b\n");

    scanf("%f%f", &a,&b);

    c= a+b;

    printf("Calculate of %f",c);

    return 0;



}


Post a Comment

0 Comments