c program to find product of two numbers

#include<stdio.h>
#include<conio.h>
void main()
{
int c,a,b;
clrscr();
printf("enter 1st number=");
scanf("%d",&a);
printf("enter 2nd number=");
scanf("%d",&b);
c=a*b;
printf("Product=");
printf("%d",c);
getch();
}


Comments