[PR #398] [MERGED] Create Large_Factorials.c #771

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

📋 Pull Request Information

Original PR: https://github.com/TheAlgorithms/C/pull/398
Author: @ghost
Created: 10/10/2019
Status: Merged
Merged: 11/5/2019
Merged by: @ashwek

Base: masterHead: patch-1


📝 Commits (2)

  • b7aaa56 Create Large_Factorials.c
  • 3e56d9f add printf statement + format code

📊 Changes

1 file changed (+44 additions, -0 deletions)

View changed files

misc/Large_Factorials.c (+44 -0)

📄 Description

Algorithm for calculation of very large factorials (till 5000! in this case). The code overcomes the problem that we do not have a large enough data type to store such large numbers.


🔄 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/398 **Author:** [@ghost](https://github.com/ghost) **Created:** 10/10/2019 **Status:** ✅ Merged **Merged:** 11/5/2019 **Merged by:** [@ashwek](https://github.com/ashwek) **Base:** `master` ← **Head:** `patch-1` --- ### 📝 Commits (2) - [`b7aaa56`](https://github.com/TheAlgorithms/C/commit/b7aaa565e444ae38034c6e83b96fb3188f7f068a) Create Large_Factorials.c - [`3e56d9f`](https://github.com/TheAlgorithms/C/commit/3e56d9fd1b6de98e3e40869d4959881ed36e504a) add printf statement + format code ### 📊 Changes **1 file changed** (+44 additions, -0 deletions) <details> <summary>View changed files</summary> ➕ `misc/Large_Factorials.c` (+44 -0) </details> ### 📄 Description Algorithm for calculation of very large factorials (till 5000! in this case). The code overcomes the problem that we do not have a large enough data type to store such large numbers. --- <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:15:08 +00:00
Sign in to join this conversation.
1 Participants
Notifications
Due Date
No due date set.
Dependencies

No dependencies set.

Reference: starred/C#771