Showing posts with label Programming in C. Show all posts
Showing posts with label Programming in C. Show all posts

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();
}