[PR #677] [MERGED] feat: Implemented octal to hexadecimal conversion #1154

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

📋 Pull Request Information

Original PR: https://github.com/TheAlgorithms/C/pull/677
Author: @rachitbhalla
Created: 10/18/2020
Status: Merged
Merged: 2/11/2021
Merged by: @ayaankhan98

Base: masterHead: master


📝 Commits (8)

📊 Changes

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

View changed files

📝 DIRECTORY.md (+1 -0)
conversions/octal_to_hexadecimal.c (+79 -0)

📄 Description

Description of Change

Implemented Octal to Hexadecimal conversion using C

References

#633

Checklist

[x] Added description of change
[x] Added file name matches 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
[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:


🔄 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/677 **Author:** [@rachitbhalla](https://github.com/rachitbhalla) **Created:** 10/18/2020 **Status:** ✅ Merged **Merged:** 2/11/2021 **Merged by:** [@ayaankhan98](https://github.com/ayaankhan98) **Base:** `master` ← **Head:** `master` --- ### 📝 Commits (8) - [`881e1e9`](https://github.com/TheAlgorithms/C/commit/881e1e9a888687e1fd59c9b5f49103923f0631f3) Implemented octal to hexadecimal conversion Fixes: #633 - [`6b1c8e6`](https://github.com/TheAlgorithms/C/commit/6b1c8e65be5117770211a26734c1f378b0a9b2c5) included stdio.h Fixes: #633 - [`5e11041`](https://github.com/TheAlgorithms/C/commit/5e11041d41eb236de1bc17bc7a9eaf7b8265b0dc) added test cases and updated the documentation Fixes: #633 - [`19fb5ba`](https://github.com/TheAlgorithms/C/commit/19fb5ba4dd7161357543b9ea63efa8d21889f953) updated with the suggested changes - [`e1b7750`](https://github.com/TheAlgorithms/C/commit/e1b775000a3e992c6d77a3417594d08b15aa87e4) updating DIRECTORY.md - [`e2444ce`](https://github.com/TheAlgorithms/C/commit/e2444cee186e0b70d124944afd6c74779000d25c) updated with the suggested changes - [`4d20fe4`](https://github.com/TheAlgorithms/C/commit/4d20fe4465e2620f3681152a5ca960d7c61da7d8) Merge branch 'master' of https://github.com/rachitbhalla/C - [`f2c9fe3`](https://github.com/TheAlgorithms/C/commit/f2c9fe3ee5529df44a9388f846fe4a0090c92c97) updated with the suggested changes ### 📊 Changes **2 files changed** (+80 additions, -0 deletions) <details> <summary>View changed files</summary> 📝 `DIRECTORY.md` (+1 -0) ➕ `conversions/octal_to_hexadecimal.c` (+79 -0) </details> ### 📄 Description #### Description of Change Implemented Octal to Hexadecimal conversion using C <!-- 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 <!-- Add any reference to previous pull-request or issue --> #633 #### 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/blob/master/CONTRIBUTING.md#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/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/677"><img src="https://gitpod.io/api/apps/github/pbs/github.com/rachitbhalla/C.git/f2c9fe3ee5529df44a9388f846fe4a0090c92c97.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:18:01 +00:00
Sign in to join this conversation.
1 Participants
Notifications
Due Date
No due date set.
Dependencies

No dependencies set.

Reference: starred/C#1154