This program allows user to enter two values and then the sum of the two values will be printed on the screen.
SAMPLE PROGRAM:
#include <iostream.h>
#include <conio.h>
int main()
{
clrscr();
int value1, value2, sum;
cout<<"Enter first value: ";
cin>>value1;
cout<<"Enter second value: ";
cin>>value2;
sum = value1 + value2;
cout<<"The sum of given values is : ";
cout<< sum;
return 0;
}
OUTPUT:
Enter first value: 6
Enter second value: 7
The sum of given values is : 13
ALSO CHECK THE FOLLOWING C++ PROGRAMS:
-- C++ Program To Print Square Of A Numeric Value.
-- C++ Program To Accept & Print Marks & Find Total.
-- C++ Program To Accept Three Numbers & Print Percentage Marks.
-- C++ Program To Check Whether A Number Is Greater Than 100 Or Not.
-- C++ Program To Check Whether A Number & It's Log Value Are Greater Than 10 Or Not.
-- C++ Program To Check Whether A Number Is Prime Or Not.
-- C++ Program To Calculate The Area Of A Rectangle.
-- C++ Program To Find The Square Root Of A Number.
-- C++ Program To Calculate The Greatest Common Divisor Of Two Numbers.
-- C++ Program To Accept A Number 'n' & Find Sum Of All Numbers Upto 'n'.
... Return To C++ Programs Index
... Return To C++ FAQ's Index
... Return To C Programs Index
... Return To C FAQ's Index
... Return To HR Interview Index
Comments
Post a Comment
Please share your opinions and suggestions or your experience in the comments section. This way we can all help each other...
Experienced guys can share their resumes at admin@interview-made-easy.com