[PR #736] [CLOSED] feat: Added recursive factorial function #1241

Open
opened 2026-01-29 15:18:37 +00:00 by claunia · 0 comments
Owner

📋 Pull Request Information

Original PR: https://github.com/TheAlgorithms/C/pull/736
Author: @nicola-masarone
Created: 10/30/2020
Status: Closed

Base: masterHead: master


📝 Commits (10+)

  • fc873b8 Added recursive factorial function
  • 917c41f Update misc/factorial_recursive.c
  • 066c38e Update misc/factorial_recursive.c
  • c92cd7e Update misc/factorial_recursive.c
  • ef595fa updating DIRECTORY.md
  • 35a9b51 Update factorial_recursive.c
  • 6335742 Update misc/factorial_recursive.c
  • b0ee32c Update factorial_recursive.c
  • 5bfe7c1 Update misc/factorial_recursive.c
  • a9306ba Update misc/factorial_recursive.c

📊 Changes

2 files changed (+86 additions, -0 deletions)

View changed files

📝 DIRECTORY.md (+1 -0)
misc/factorial_recursive.c (+85 -0)

📄 Description

Description of Change

References

Checklist

  • Added description of change
  • Added file name matches File name guidelines
  • Added tests and example, test must pass
  • Relevant documentation/comments is changed or added
  • PR title follows semantic commit guidelines
  • Search previous suggestions before making a new one, as yours may be a duplicate.
  • I acknowledge that all my contributions will be made under the project's license.

Notes:

Recursive factorial function


🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.

## 📋 Pull Request Information **Original PR:** https://github.com/TheAlgorithms/C/pull/736 **Author:** [@nicola-masarone](https://github.com/nicola-masarone) **Created:** 10/30/2020 **Status:** ❌ Closed **Base:** `master` ← **Head:** `master` --- ### 📝 Commits (10+) - [`fc873b8`](https://github.com/TheAlgorithms/C/commit/fc873b8edfcc70960b24cb4c80978be5a3ca30aa) Added recursive factorial function - [`917c41f`](https://github.com/TheAlgorithms/C/commit/917c41f27b4a46cedd43983f57a1070b5b3e1715) Update misc/factorial_recursive.c - [`066c38e`](https://github.com/TheAlgorithms/C/commit/066c38ef6a54fdbddd71740c39683e37dc47e3a2) Update misc/factorial_recursive.c - [`c92cd7e`](https://github.com/TheAlgorithms/C/commit/c92cd7ecf67454ea3db7ddc05b7181ec8a9e6a92) Update misc/factorial_recursive.c - [`ef595fa`](https://github.com/TheAlgorithms/C/commit/ef595fa7736f409a36c219abc28b5b3750ae68eb) updating DIRECTORY.md - [`35a9b51`](https://github.com/TheAlgorithms/C/commit/35a9b51cf96afa2ed817821a0d67301187aa4a0d) Update factorial_recursive.c - [`6335742`](https://github.com/TheAlgorithms/C/commit/633574229c266f9ad0045ef4a0c162bc532b1036) Update misc/factorial_recursive.c - [`b0ee32c`](https://github.com/TheAlgorithms/C/commit/b0ee32cf28565b5fd1ac6c1dcdf67e7b68827e06) Update factorial_recursive.c - [`5bfe7c1`](https://github.com/TheAlgorithms/C/commit/5bfe7c13c7b9f4f2193c797bb848e82439ebc9aa) Update misc/factorial_recursive.c - [`a9306ba`](https://github.com/TheAlgorithms/C/commit/a9306baa03d633b25673c5edd1729f2c1ce6c4e4) Update misc/factorial_recursive.c ### 📊 Changes **2 files changed** (+86 additions, -0 deletions) <details> <summary>View changed files</summary> 📝 `DIRECTORY.md` (+1 -0) ➕ `misc/factorial_recursive.c` (+85 -0) </details> ### 📄 Description #### Description of Change <!-- Thank you for your Pull Request. Please provide a description above and review the requirements below. Contributors guide: https://github.com/TheAlgorithms/C/blob/master/CONTRIBUTING.md --> #### References <!-- Add any reference to previous pull-request or issue --> #### Checklist <!-- Remove items that do not apply. For completed items, change [ ] to [x]. --> - [x] Added description of change - [x] Added file name matches [File name guidelines](https://github.com/TheAlgorithms/C/blob/master/CONTRIBUTING.md#File-Name-guidelines) - [x] Added tests and example, test must pass - [x] Relevant documentation/comments is changed or added - [x] PR title follows semantic [commit guidelines](https://github.com/TheAlgorithms/C/blob/master/CONTRIBUTING.md#Commit-Guidelines) - [x] Search previous suggestions before making a new one, as yours may be a duplicate. - [x] I acknowledge that all my contributions will be made under the project's license. Notes: <!-- Please add a one-line description for developers or pull request viewers --> Recursive factorial function <a href="https://gitpod.io/#https://github.com/TheAlgorithms/C/pull/736"><img src="https://gitpod.io/api/apps/github/pbs/github.com/nicola-masarone/C.git/56ebef07fabb815beb3f87402b5b2e7bcc9373ed.svg" /></a> --- <sub>🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.</sub>
claunia added the pull-request label 2026-01-29 15:18:37 +00:00
Sign in to join this conversation.
1 Participants
Notifications
Due Date
No due date set.
Dependencies

No dependencies set.

Reference: starred/C#1241