Program to Add two Numbers

Share it Please
Description:
This program in used to simply add two numbers entered by any user.

Program:

#include<stdio.h>
#include<conio.h>
main()
{
           int a,b,c;
           clrscr();
           printf("Enter First Number: ");
           scanf("%d",&a);
           printf("\nEnter Second Number: ");
           scanf("%d",&b);
           c=a+b;
           printf("\nAddition is %d",c);
           getch();
}