Addition of Two Numbers

/* 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

Popular posts from this blog

PHP function and Keywords used to print on Webpage.

Assignment 1 Question 3 (Server side and Client Side Scripting)

Install the packages in Linux