WAP To Print Sum Of Two No
#include<iostream.h>
#include<conio.h>
Void main()
{ clrscr();
Int value 1,value 2,sum;
cout<<”Enter the first value”;
cin>>value 1;
cout<<”Enter second value”;
cin>>value 2;
sub=value 1+value 2;
cout<<”The sum of given values
is”;
cout<<sum;
getch();
}
Comments
Post a Comment