28 lines
510 B
C
28 lines
510 B
C
/*
|
|
* C Program to find Product of 2 Numbers without using Recursion
|
|
*/
|
|
|
|
#include <stdio.h>
|
|
|
|
int product(int, int);
|
|
|
|
int main()
|
|
{
|
|
int a, b, result;
|
|
printf("Enter two numbers to find their product: ");
|
|
scanf("%d%d", &a, &b);
|
|
result = product(a, b);
|
|
printf("Product of %d and %d is %d\n", a, b, result);
|
|
return 0;
|
|
}
|
|
|
|
int product(int a, int b)
|
|
{
|
|
int temp = 0;
|
|
while (b != 0)
|
|
{
|
|
temp += a;
|
|
b--;
|
|
}
|
|
return temp;
|
|
} |