#include<iostream.h>
#include<conio.h>
void main ()
{
clrscr();
int a,b,c;
cout<<“Enter the first number “;
cin>>a;
cout<<“Enter the second number “;
cin>>b;
c=a+b;
cout<<“The result is “<<c;
getch();
}
#include<conio.h>
void main ()
{
clrscr();
int a,b,c;
cout<<“Enter the first number “;
cin>>a;
cout<<“Enter the second number “;
cin>>b;
c=a+b;
cout<<“The result is “<<c;
getch();
}
No comments:
Post a Comment