WRITE A PROGRAM IN C++ FOR ADDING TWO NUMBERS
Answers
Answered by
2
..C++ program to add two numbers..
- #include <iostream>
- using namespace std;
- int main()
- {
- int a, b, c;
- cout << "Enter two integers to add\n";
- cin >> a >> b;
- c = a + b;
I think this helps u
plz.. mark it as brainlist answer
muskan123419:
copy of Google
Answered by
1
C++ program to add two numbers
#include <iostream>
using namespace std;
int main()
{
int a, b, c;
cout << "Enter two integers to add\n";
cin >> a >> b;
c = a + b;
Similar questions
English,
6 months ago
Math,
6 months ago
English,
6 months ago
Psychology,
1 year ago
Math,
1 year ago