DESCRIPTION-:THIS PROGRAM FINDS THE SUM OF TWO NUMBERS
PROGRAM-:
#include<iostream.h>
#include<conio.h>
void main()
{
int a,b,c;
cout<<"enter the value of two numbers";
cin>>a>>b;
c=a+b;
cout<<"sum of two number is"<<c;
getch();
}
PROGRAM-:
#include<iostream.h>
#include<conio.h>
void main()
{
int a,b,c;
cout<<"enter the value of two numbers";
cin>>a>>b;
c=a+b;
cout<<"sum of two number is"<<c;
getch();
}
0 comments:
Post a Comment