Friday, 31 May 2019

Summations Tow Numbers Programming in C with source code


Summations Tow Numbers Programming in C

#include<stdio.h>
int main()
{
int a,b,sum;
printf("Enter the number a=");
scanf("%d",&a);
printf("Enter the number b=");
scanf("%d",&b);
sum=a+b;
printf("sumation=%d\n",sum);

getch();
}


Console output:





No comments:

Post a Comment