/*EXPERIMENT - 1*/ /* AIM : TO CALCULATE THE SUM OF TWO GIVEN INTEGERS. */ /* PROGRAMMER : SHEKHAR A. SHERIKAR */ /* COMPUTER TECHNOLOGY - CM102 (B3) */ main() { int a,b,c; clrscr(); printf("\n\n\t\tThis program will help you to add Two given Integers."); printf("\n\n\t\t\t Enter the first number:"); scanf("%d",&a); printf("\n\n\t\t\t Enter the second number:"); scanf("%d",&b); c=a+b; /*The sum of the two numbers is calculated and assigned to 'c'*/ printf("\n\n\n\t\t\t\t A N S W E R"); /*The sum of the numbers is printed in the following statement:*/ printf("\n\n\t\t\t The sum of the two numbers is %d.",c); getch(); }