Back To C Basic Index
//program to input two numbers and find their product #include
#include
void main() { int a,b; int product; clrscr(); printf("enter value for a"); scanf("%d",&a); printf("enter value for b"); scanf("%d",&b); product=a*b; printf("product of a and b is %d",product); getch(); }