Write a program to calculate the sum of two numbers.
#inlcude <stdio.h>
#include <conio.h>
void main()
{
int A,B,C;
clrscr();
printf(“Enter the first number:”);
scanf(“%d”,&A);
printf(“\nEnter the second number:”);
scanf(“%d”,&B);
C=A+B;
printf(“%d”,C);
getch();
}

0 Comments
Have any query? Want any type of module?
Please comment it down and let me know.