#include<stdio.h>
void main(){
int num1,num2,product=0;
printf("Enter two numbers:");
scanf("%d%d", &num1, &num2);
product= num1 * num2;
printf("Product of %d x %d = %d", num1, num2, product);
}
- product=0
#include<stdio.h>
void main(){
int num1,num2,product=0;
printf("Enter two numbers:");
scanf("%d%d", &num1, &num2);
product= num1 * num2;
printf("Product of %d x %d = %d", num1, num2, product);
}