multiplication of two elements in c
// to multiply of two numbers
#include<stdio.h>
int main()
{
int a;
int b;
int mult;
printf("enter the first number: ");
scanf("%d", &a);
printf("enter the second number: ");
scanf("%d", &b);
mult= a * b;
printf("the product of the two number is: %d\n", mult);
}
Comments
Post a Comment