write a program to find the product of 2 numbers using user defined function??
Answers
Answered by
0
Answer:
Program 1
int multiplyNum(int , int);//function declaration or prototype.
int main()
{
int num1,num2,product;//variable declaration.
printf("Enter the two number ");
scanf("%d %d",&num1,&num2);//taking two number as input from user.
product=multiplyNum(num1,num2);//calling the function.
Explanation:
please mark me the brainliest.
Similar questions