write a program to input sum of two number by using return type function by parameterized
ance62:
hey frnd
Answers
Answered by
1
//this function is in c++
int sum(int a,int b)
{cout<<"enter the first number:";
cin>>a;
cout<<"enter the second number:";
cin>>b;
s=a+b; //this is the sum
return s;
}
Answered by
1
❤OK,let we solve the problem
Similar questions