// addition of two numbers
#include
using namespace std;
int main ()
{
int a,b;
int result;
a=5;
b=2;
result=a+b;
cout<return 0;
}
PROGRAM RESULT
DOWNLOAD PDF
#include
using namespace std;
int main ()
{
int a,b;
int result;
a=5;
b=2;
result=a+b;
cout<
}
PROGRAM RESULT
DOWNLOAD PDF
0 Comments
If you have further concerns, kindly drop a comment.