c program to find product of two numbers on October 11, 2017 Get link Facebook X Pinterest Email Other Apps #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
Comments
Post a Comment