Thursday, March 23, 2017

4 product two number- c program


#include<stdio.h>
#include<conio.h>
main()
{
int a, b, mul;
printf(" Type the first number: ");
scanf("%d",&a);
printf(" Type the second number: ");
scanf("%d",&b);
mul = a*b;
printf("Multiplication= %d", mul);
getch();
}
view raw 4.c hosted with ❤ by GitHub