Write a c program that print the multiplication of two numbers
Answers
Answered by
0
Answer:
void main()
{
int a,b;
printf("Enter 2 numbers:\n");
scanf("%d%d",&a,&b);
printf("The product of a and b=",a*b);
}
Similar questions