Welcome to this open and free electrical engineering study blog. A strong team of well experienced electrical engineers in different fields of electrical technology.
In this blog u can get all data of electrical engineering like books their Solution manuals power point sides of lectures and software etc free of cost.
So enjoy,,,,,,
# include <iostream>
using namespace std;
int add (int,int);
int main ()
{ int a,b,sum; cout<<"Enter 2 numbers ="<<endl; cin>>a>>b; sum=add (a, b); cout<<"Sum is ="<<sum<<endl; return 0;
}
int add(int a, int b)
{
int add;
add = a+b;
return add;
}
No comments:
Post a Comment