In the code editor, you are provided with a main function that asks the user for an integer input and passes this value to a function called, getFactorial() The getFactorial() function has the following description: Return type - int Name - getFactorial Parameters - one integer Description - returns the factorial of the passed integer

C++ Programming: From Problem Analysis to Program Design
8th Edition
ISBN:9781337102087
Author:D. S. Malik
Publisher:D. S. Malik
Chapter15: Recursion
Section: Chapter Questions
Problem 6PE
icon
Related questions
Question

Instructions: In Basic C Language

  1. In the code editor, you are provided with a main function that asks the user for an integer input and passes this value to a function called, getFactorial()
  2. The getFactorial() function has the following description:
    1. Return type - int
    2. Name - getFactorial
    3. Parameters - one integer
    4. Description - returns the factorial of the passed integer
  3. Your implementation should be RECURSIVE and you should not use any loops

Input

#include<stdio.h>

int getFactorial(int);

int main(void) {
    int n;
    printf("Enter n: ");
    scanf("%d", &n);

    printf("Factorial of %d is %d", n, getFactorial(n));

    return 0;
}

int getFactorial(int n) {
    // TODO: Implement this recursive function
}

 

Output should be:

Enter n: 3
Factorial of 3 is 6
Expert Solution
steps

Step by step

Solved in 3 steps with 1 images

Blurred answer
Knowledge Booster
Function Arguments
Learn more about
Need a deep-dive on the concept behind this application? Look no further. Learn more about this topic, computer-science and related others by exploring similar questions and additional content below.
Similar questions
  • SEE MORE QUESTIONS
Recommended textbooks for you
C++ Programming: From Problem Analysis to Program…
C++ Programming: From Problem Analysis to Program…
Computer Science
ISBN:
9781337102087
Author:
D. S. Malik
Publisher:
Cengage Learning
C++ for Engineers and Scientists
C++ for Engineers and Scientists
Computer Science
ISBN:
9781133187844
Author:
Bronson, Gary J.
Publisher:
Course Technology Ptr