Header Ads Widget

Responsive Advertisement

From programming how to calculate two number of sum.

 #include<stdio.h>

int main()


{

    int a,b,c;

    printf("enter two numbers");

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

    c=a+b;

    printf("sum of %d",c);

    return 0;

}


Post a Comment

0 Comments