Discription About Program

Addition of two numbers in C:

1.This C language program performs the basic arithmetic operation of addition of two numbers and then prints their sum on the screen.
2.For example, if a user will input two numbers as; '10', '20' then '30' (10 + 20) will be printed.

For Example-:

	#include<stdio.h>
	void main()
	{
	   int a,b,sum;
	   printf("entered the value");
	   scanf("%d%d",&a,&b);
	   sum=a+b;
	   printf("%d",sum);
	 }