mirror of
https://github.com/TheAlgorithms/C.git
synced 2026-02-04 05:44:35 +00:00
[PR #367] [CLOSED] Added : conversion of Decimal Integer to BCD #725
Reference in New Issue
Block a user
Delete Branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
📋 Pull Request Information
Original PR: https://github.com/TheAlgorithms/C/pull/367
Author: @KaProDes
Created: 10/7/2019
Status: ❌ Closed
Base:
master← Head:patch-2📝 Commits (10+)
1e5afccupdated README.md80997b9updated CodingGuidelines.md89069e2updated CodingGuidelines.md4cd255dupdated shellSort.c69a263b7.c :reverse of a number with overflow check added19c2e939.c :pallindrome of a number with overflow check added15f4fb1README.md updated59f998e8.c: atoi implemented(used long int)cd05073updated 7.c and 9.c42d4fb5Solution for "2. Add Two Numbers"📊 Changes
18 files changed (+812 additions, -112 deletions)
View changed files
➖
CodingGuidelines.md(+0 -19)📝
README.md(+15 -1)➕
cipher/rc4.c(+189 -0)➕
conversions/decimal_to_bcd.c(+28 -0)➕
data_structures/binary_trees/splay_tree.c(+138 -0)📝
exercism/hello-world/hello_world.c(+7 -5)📝
leetcode/README.md(+8 -1)➕
leetcode/src/2.c(+43 -0)➕
leetcode/src/21.c(+56 -0)➕
leetcode/src/28.c(+37 -0)➕
leetcode/src/4.c(+29 -0)➕
leetcode/src/7.c(+53 -0)➕
leetcode/src/8.c(+75 -0)➕
leetcode/src/9.c(+71 -0)📝
project_euler/Problem 07/sol.c(+5 -1)📝
searching/LinearSearch.c(+21 -17)📝
sorting/BubbleSort.c(+6 -6)📝
sorting/shellSort.c(+31 -62)📄 Description
Any Integer can be converted to it's BCD equivalent.
Ex : If 22 is entered, the BCD quivalent is 0010_1001 i.e. 39 in decimal.
🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.