mirror of
https://github.com/TheAlgorithms/C.git
synced 2026-04-22 05:19:37 +00:00
[PR #658] [MERGED] Add another hexadecimal to octal conversion #1126
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/658
Author: @yous
Created: 10/14/2020
Status: ✅ Merged
Merged: 10/21/2020
Merged by: @Panquesito7
Base:
master← Head:hex-to-oct📝 Commits (5)
cd02534Add another hexadecimal to octal conversion076f62cApply suggestionsc5d2109Update comment of hexadecimal_to_octal2.c32113ebupdating DIRECTORY.mddf1b119Apply suggestions📊 Changes
2 files changed (+120 additions, -0 deletions)
View changed files
📝
DIRECTORY.md(+1 -0)➕
conversions/hexadecimal_to_octal2.c(+119 -0)📄 Description
Description of Change
Now input supports the whole range of
uint64_t, from0toFFFF FFFF FFFF FFFF.This first converts a hex string to an
unsigned long longdecimal, and then to an octal string.References
Checklist
Notes:
🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.