All major conceptual S2 C-Programs with Algorithms
#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);
}