Program to find sum of 2 numbers

EXPLANATION:-  Take two integers (a and b), ask the user to input values through printf, scan the values through printf. Include header file at the top for library functions. Add the values and print it as shown below(2 ways):-

#include<stdio.h>                                                    #include<stdio.h>    
#include<conio.h>                                                   #include<conio.h>
void main()                                                               void main()
{                                                                                  {     
int a,b,sub;                                                                  int a= 10, b=20, sum;
clrscr();                                                                        clrscr();    
printf("Enter two numbers:");                                 sum=a+b;   
scanf("%d %d", &a, &b);                                         printf("\nSum= %d", sum);     
sum=a+b;                                                                      getch();
printf("\nSum= %d", sum);                                     }                                    
getch();
}                                                                           In the second way, value of a and b has                                                                                       been initialised.


Post a Comment

0 Comments