[PR #1292] [CLOSED] Add finance #1894

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

📋 Pull Request Information

Original PR: https://github.com/TheAlgorithms/C/pull/1292
Author: @L-Huber
Created: 8/2/2023
Status: Closed

Base: masterHead: add_finance


📝 Commits (2)

📊 Changes

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

View changed files

finance/interest.c (+34 -0)
finance/present_value.c (+39 -0)

📄 Description

Description of Change

a created some C code for the following finance issues:
-present value of cash flows already in python
-interest already in python
I have further ideas for other problems

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
    the second one yes, I forgot it when creating the first commit, sorry... I am new to this
  • 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:
I created the finance examples interest and present value


🔄 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/1292 **Author:** [@L-Huber](https://github.com/L-Huber) **Created:** 8/2/2023 **Status:** ❌ Closed **Base:** `master` ← **Head:** `add_finance` --- ### 📝 Commits (2) - [`16adde7`](https://github.com/TheAlgorithms/C/commit/16adde72dd0860d93b2cf43b697dc34459a55cdf) created interest calculator - [`fae5b95`](https://github.com/TheAlgorithms/C/commit/fae5b95be61ab7ebd3c774e571ddcc950f91fd2c) feat: add present value ### 📊 Changes **2 files changed** (+73 additions, -0 deletions) <details> <summary>View changed files</summary> ➕ `finance/interest.c` (+34 -0) ➕ `finance/present_value.c` (+39 -0) </details> ### 📄 Description #### Description of Change a created some C code for the following finance issues: -present value of cash flows [already in python](https://the-algorithms.com/de/algorithm/present-value?lang=python) -interest [already in python](https://the-algorithms.com/de/algorithm/interest?lang=python) I have further ideas for other problems <!-- 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 #### Checklist - [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) - [ ] 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) the second one yes, I forgot it when creating the first commit, sorry... I am new to this - [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 --> I created the finance examples interest and present value --- <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:25:54 +00:00
Sign in to join this conversation.
1 Participants
Notifications
Due Date
No due date set.
Dependencies

No dependencies set.

Reference: starred/C#1894