cstartes
Search stops here
Pages
Home
Blogroll
Guest Post
Privacy Policy
Contact Us
About
Function to find product of two variables.
int product(int,int);
void main()
{
int a,b,c;
printf("Enter the two number");
scanf("%d %d",&a,&b);
c=product+(a,b);
printf("The product is %d",c);
getch();
}
int product(int x,int y)
{
int z;
z=x*y;
return(z);
}
No comments:
Post a Comment
Newer Post
Older Post
Home
Subscribe to:
Post Comments (Atom)
No comments:
Post a Comment