Computer Science, asked by Kaushalcb, 10 months ago

Write a c program that print the multiplication of two numbers

Answers

Answered by varadhabala29
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