Thursday, March 23, 2017

2 adding two number

#include<stdio.h>
#include<conio.h>
main()
{
int a, b, sum;
printf(" Type the first number: ");
scanf("%d",&a);
printf("Type the second number:");
scanf("%d",&b);
sum = a+b;
printf("Summation = %d",sum);
getch();
}
view raw 2.c hosted with ❤ by GitHub