[PR #575] [MERGED] decimal to binary using recursion #1005

Closed
opened 2026-01-29 15:16:46 +00:00 by claunia · 0 comments
Owner

📋 Pull Request Information

Original PR: https://github.com/TheAlgorithms/C/pull/575
Author: @realDuYuanChao
Created: 7/19/2020
Status: Merged
Merged: 7/31/2020
Merged by: @kvedala

Base: masterHead: patch-4


📝 Commits (2)

  • 41dfe3a add decimal_to_binary_recursion.c
  • d93a930 updating DIRECTORY.md

📊 Changes

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

View changed files

📝 DIRECTORY.md (+1 -0)
conversions/decimal_to_binary_recursion.c (+38 -0)

📄 Description

Description of Change

Add decimal to binary using recursion algorithm

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:


🔄 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/575 **Author:** [@realDuYuanChao](https://github.com/realDuYuanChao) **Created:** 7/19/2020 **Status:** ✅ Merged **Merged:** 7/31/2020 **Merged by:** [@kvedala](https://github.com/kvedala) **Base:** `master` ← **Head:** `patch-4` --- ### 📝 Commits (2) - [`41dfe3a`](https://github.com/TheAlgorithms/C/commit/41dfe3a4d37a33315bae5d4a3258358072100151) add decimal_to_binary_recursion.c - [`d93a930`](https://github.com/TheAlgorithms/C/commit/d93a930ef93fde801eb4ecde818a6c893f54e8b1) updating DIRECTORY.md ### 📊 Changes **2 files changed** (+39 additions, -0 deletions) <details> <summary>View changed files</summary> 📝 `DIRECTORY.md` (+1 -0) ➕ `conversions/decimal_to_binary_recursion.c` (+38 -0) </details> ### 📄 Description #### Description of Change Add decimal to binary using recursion algorithm #### 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-Plus-Plus/blob/master/CONTRIBUTING.md#New-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-Plus-Plus/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 --> <a href="https://gitpod.io/#https://github.com/TheAlgorithms/C/pull/575"><img src="https://gitpod.io/api/apps/github/pbs/github.com/shellhub/C.git/d93a930ef93fde801eb4ecde818a6c893f54e8b1.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:16:46 +00:00
Sign in to join this conversation.
1 Participants
Notifications
Due Date
No due date set.
Dependencies

No dependencies set.

Reference: starred/C#1005