+ 1
Sum two numbers
I had done it but it was shown as error can you please correct it
4 Answers
+ 6
Your question is incorrect, please enclose your code so that people can answer your question :)
+ 5
plz justify the question completely , your question is incomplete
Or if you are talking about your code sum then ,
#include <iostream>
using namespace std;
int main()
{
int a,b,c;
cout<<"enter the two numbers";
cin>>a>>b;
c=a+b;
cout<<"the sum is "<<c;
return 0;
} // this was missing
+ 4
I have written the code above
0
write a program to find the sum of two numbers