Uh oh!
There was an error while loading.Please reload this page.
- Notifications
You must be signed in to change notification settings - Fork4.7k
Add maths/factorial.c — simple factorial program in C#1528
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to ourterms of service andprivacy statement. We’ll occasionally send you account related emails.
Already on GitHub?Sign in to your account
base:master
Are you sure you want to change the base?
Add maths/factorial.c — simple factorial program in C#1528
Uh oh!
There was an error while loading.Please reload this page.
Conversation
srujanasadhusharma-source commentedNov 13, 2025
Hello maintainers This is my first contribution to TheAlgorithms/C. |
This pull request has been automatically marked as abandoned because it has not had recent activity. It will be closed if no further activity occurs. Thank you for your contributions. |
Description of Change
Added a simple C program maths/factorial.c that computes the factorial
of a non-negative integer using a for loop, as I'm a beginner here.
The program:
Author: Nagaraj (https://github.com/srujanasadhusharma-source)
Added maths/factorial.c program — beginner-friendly factorial implementation in C.