Golgappa.net | Golgappa.org | BagIndia.net | BodyIndia.Com | CabIndia.net | CarsBikes.net | CarsBikes.org | CashIndia.net | ConsumerIndia.net | CookingIndia.net | DataIndia.net | DealIndia.net | EmailIndia.net | FirstTablet.com | FirstTourist.com | ForsaleIndia.net | IndiaBody.Com | IndiaCab.net | IndiaCash.net | IndiaModel.net | KidForum.net | OfficeIndia.net | PaysIndia.com | RestaurantIndia.net | RestaurantsIndia.net | SaleForum.net | SellForum.net | SoldIndia.com | StarIndia.net | TomatoCab.com | TomatoCabs.com | TownIndia.com
Interested to Buy Any Domain ? << Click Here >> for more details...


Write a C++ Program to find Addition of Two Numbers.



Write a C++ Program to find Addition of Two Numbers...

Answer / hr

Solution:
/* C++ Program to find Addition of Two Numbers */
#include<iostream>
using namespace std;
int main()
{
int x,y,sum;
cout<<"Enter first number :: ";
cin>>x;
cout<<"
Enter second number :: ";
cin>>y;
sum=x+y;
cout<<"
Sum of two numbers [ "<<x<<" + "<<y<<" ] = "<<sum<<"
";
return 0;
}

Output:
/* C++ Program to find Addition of Two Numbers */
Enter first number :: 12
Enter second number :: 34
Sum of two numbers [ 12 + 34 ] = 46
Process returned 0

Is This Answer Correct ?    0 Yes 0 No

Post New Answer

More C++ Interview Questions

What Are The Differences Between A C++ Struct And C++ Class?

2 Answers   Wipro,


Explain the importance of method overloading in C++?

0 Answers   Akamai Technologies, Infogain,


How can you force the compiler to not generate them?

0 Answers   Amazon,


What is an abstract class?

6 Answers   Siemens,


Write a C++ Program to find Addition of Two Numbers.

1 Answers  


What does it mean to declare a function or variable as static?

0 Answers   Amazon,


How does stack look in function calls? Write a recursive function call, how will the stack look like?

0 Answers   Adobe,


what is friend function in C++?

0 Answers   TCS,


What is RTTI and why do you need it?

0 Answers   Amazon,


Describe the different styles of function prototypes in C++.

0 Answers   Adobe,


Tell me about virtual function

1 Answers  


How to reverse a string in C++

0 Answers  


Categories