A PHP Error was encountered

Severity: 8192

Message: str_replace(): Passing null to parameter #3 ($subject) of type array|string is deprecated

Filename: libraries/Filtered_db.php

Line Number: 23

C program to calculate the product of two numbers using recursion
Q:

C program to calculate the product of two numbers using recursion

0

C program to calculate the product of two numbers using recursion

All Answers

need an explanation for this answer? contact us directly to get an explanation for this answer

Here, we will read two integer numbers from the user and then calculate the product of both numbers using a recursive function.

Program:

The source code to calculate the product of two numbers using recursion is given below. The given program is compiled and executed using GCC compile on UBUNTU 18.04 OS successfully.

// C program to calculate the product of two numbers
// using recursion

#include <stdio.h>

int calculateProduct(int num1, int num2)
{
    if (num1 < num2) {
        return calculateProduct(num2, num1);
    }
    else if (num2 != 0) {
        return (num1 + calculateProduct(num1, num2 - 1));
    }
    else {
        return 0;
    }
}

int main()
{
    int num1 = 0;
    int num2 = 0;
    int product = 0;

    printf("Enter Num1: ");
    scanf("%d", &num1);

    printf("Enter Num2: ");
    scanf("%d", &num2);

    product = calculateProduct(num1, num2);
    printf("Product is: %d", product);

    return 0;
}

Output:

RUN 1:
Enter Num1: 10
Enter Num2: 20
Product is: 200

RUN 2:
Enter Num1: 3
Enter Num2: 8
Product is: 24

RUN 3:
Enter Num1: 121
Enter Num2: 6
Product is: 726

RUN 4:
Enter Num1: 2
Enter Num2: 9
Product is: 18

Explanation:

In the above program, we created two functions calculateProduct() and main() function. The calculateProduct() function is a recursive function, which is used to calculate the product of two numbers and return the result to the calling function.

In the main() function, we read two integer numbers from the user and then we calculated the product of both numbers using the calculateProduct() function and printed the result on the console screen.

need an explanation for this answer? contact us directly to get an explanation for this answer

total answers (1)

This question belongs to these collections

Similar questions


need a help?


find thousands of online teachers now