THE   PRODUCT OF TWO NUMBERS IN  C 


#include<studio.h>
#include<conio.h>
void main()
{ int x ,y , product=0;
printf("enter the numbers x and y ");
scanf("%d%d",&x,&y);
product = x*y;
printf("product = %d ",product);
getch()
}


Comments

Popular Posts