[PR #862] [CLOSED] Bit_manipulation created #1370

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

📋 Pull Request Information

Original PR: https://github.com/TheAlgorithms/C/pull/862
Author: @aritro66
Created: 10/1/2021
Status: Closed

Base: masterHead: master


📝 Commits (5)

  • 14919c0 binary_and_operator.c file created
  • 4ab886b binary_or_operator.c file created
  • e65cf27 binary_xor_operator.c file created
  • cda27b8 binary_compliment_operator.c file created
  • 4391d96 binary_shifts.c file created

📊 Changes

5 files changed (+126 additions, -0 deletions)

View changed files

bit_manipulation/binary_and_operator.c (+25 -0)
bit_manipulation/binary_compliment_operator.c (+22 -0)
bit_manipulation/binary_or_operator.c (+25 -0)
bit_manipulation/binary_shifts.c (+29 -0)
bit_manipulation/binary_xor_operator.c (+25 -0)

📄 Description

Description of Change

I have created some basic bitwise operations, c programs. This contains some basic and concept clearing examples which can help users/students to understand bit_manipulation easily.

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
  • 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:
Open in Gitpod


🔄 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/862 **Author:** [@aritro66](https://github.com/aritro66) **Created:** 10/1/2021 **Status:** ❌ Closed **Base:** `master` ← **Head:** `master` --- ### 📝 Commits (5) - [`14919c0`](https://github.com/TheAlgorithms/C/commit/14919c071a1d0677a8b278e7046832a9ac0ebc99) binary_and_operator.c file created - [`4ab886b`](https://github.com/TheAlgorithms/C/commit/4ab886b4540c7efbc384063f4a4bc81d5c9b49f8) binary_or_operator.c file created - [`e65cf27`](https://github.com/TheAlgorithms/C/commit/e65cf27e164660a8e998e1c4275254ff9742da04) binary_xor_operator.c file created - [`cda27b8`](https://github.com/TheAlgorithms/C/commit/cda27b82d243fc110360c008f00f05b0b12dde8a) binary_compliment_operator.c file created - [`4391d96`](https://github.com/TheAlgorithms/C/commit/4391d967d8cd616e0db68ad29d2f946fb8de2ac5) binary_shifts.c file created ### 📊 Changes **5 files changed** (+126 additions, -0 deletions) <details> <summary>View changed files</summary> ➕ `bit_manipulation/binary_and_operator.c` (+25 -0) ➕ `bit_manipulation/binary_compliment_operator.c` (+22 -0) ➕ `bit_manipulation/binary_or_operator.c` (+25 -0) ➕ `bit_manipulation/binary_shifts.c` (+29 -0) ➕ `bit_manipulation/binary_xor_operator.c` (+25 -0) </details> ### 📄 Description #### Description of Change I have created some basic bitwise operations, c programs. This contains some basic and concept clearing examples which can help users/students to understand bit_manipulation easily. #### References #### 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: [![Open in Gitpod](https://gitpod.io/button/open-in-gitpod.svg)](https://gitpod.io/#https://github.com/aritro66/C/tree/master/bit_manipulation) --- <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:19:51 +00:00
Sign in to join this conversation.
1 Participants
Notifications
Due Date
No due date set.
Dependencies

No dependencies set.

Reference: starred/C#1370