Description:
This program in used to simply Multiply two numbers entered by any user.
Program:
#include<stdio.h>
#include<conio.h>
main()
{
int a,b,c;
clrscr();
printf("Enter First Number: ");
scanf("%d",&a);
printf("\nEnter Second Number: ");
scanf("%d",&b);
c=a*b;
printf("\nMultiplication is %d",c);
getch();
}
This program in used to simply Multiply two numbers entered by any user.
Program:
#include<stdio.h>
#include<conio.h>
main()
{
int a,b,c;
clrscr();
printf("Enter First Number: ");
scanf("%d",&a);
printf("\nEnter Second Number: ");
scanf("%d",&b);
c=a*b;
printf("\nMultiplication is %d",c);
getch();
}