#include<iostream>
int
sum(int a, int b);
using
namespace std;
main()
{
int x,y,result;
cout<<"enter two
number:";
cin>>x>>y;
result=sum (x,y);
cout<<"sum="<<result;
return 0;
}
int
sum(int a,int b)
{
int c;
c=a+b;
return (c);
}
0 Comments
कमेंट केवल पोस्ट से रिलेटेड करें