C++ Program To Add Two Numbers
Input:
/* C++ Program - Add Two Numbers */
#include<iostream.h>
#include<conio.h>
void main()
{
clrscr();
int a, b, sum;
cout<<"Enter two number :";
cin>>a>>b;
sum=a+b;
cout<<"Sum of the two number is "<<sum;
getch();
}
*** Use Turbo C/C++ Or Dec C++ For Coding ***
awesome
ReplyDelete