Addition of Two Numbers
- Get link
- X
- Other Apps
/* Addition of Two Numbers.. */
#include<stdio.h>
int main()
{
int a, b, sum;
printf("Pls type The First Number: \n");
scanf("%d",&a);
printf("Pls type the 2nd Number: \n");
scanf("%d",&b);
sum = a + b;
printf("Sum of Entered Numbers= %d\n", sum);
getch();
return 0;
}
Comments
Post a Comment