#include <stdio.h>
void multiply(int num1,int num2);
int main() {
int n1,n2;
printf("enter any 2 numbers\n");
scanf("%d%d",&n1,&n2);
multiply(n1,n2);
return 0;
}
void multiply(int num1,int num2)
{
printf("multiplications of two numbers is %d\n",num1*num2);
}
To embed this project on your website, copy the following code and paste it into your website's HTML: