Data Structure
Java
Python
HTML
Interview Preparation
Interview Prep
Tutorials
Tracks
DSA
Practice Problems
C
C++
Java
Python
JavaScript
Data Science
Machine Learning
Courses
Linux
DevOps
Similar Topics
Web Technologies
32.1K+ articles
DSA
20.0K+ articles
Python
19.6K+ articles
C++
3.7K+ articles
C Language
1.3K+ articles
Natural Numbers
131+ articles
Number Divisibility
78+ articles
C Basic Programs
72+ articles
C++ Bit Manipulation
13+ articles
Converted Page to Post
+ articles
Bit Manipulation in C
6 posts
Recent Articles
Popular Articles
Extract bits in C
Last Updated: 31 July 2024
In C programming, extracting a bit means retrieving the value (0 or 1) of a bit or a group of bits present at a specific position in the binary representation of a numberI...
read more
C Language
Picked
Bit Manipulation in C
C-DSA
Clearing Bits in C
Last Updated: 10 July 2024
In C programming, clearing a bit is the process of setting a specific bit of the binary number to 0. This operation is crucial in various applications, including memory ma...
read more
C Language
Picked
Bit Manipulation in C
C-DSA
Toggling bits in C
Last Updated: 10 July 2024
In C programming, toggling a bit is the process of flipping a specific bit of the binary number. It means that the bit that is 0 becomes 1 and a bit that is 1 becomes 0. T...
read more
C Language
Picked
Bit Manipulation in C
C-DSA
Setting Bits in C
Last Updated: 16 October 2024
In C programming, setting a bit is the process of setting a specific bit of a binary number to 1. This operation is crucial in various applications, including memory manag...
read more
C Language
Picked
Bit Manipulation in C
C-DSA
Bit Magic C/C++ Programs
Last Updated: 23 July 2025
Bit manipulation, also known as bit magic is the process of using bit-level operations to manipulate individual bits of a number. It uses bitwise operators such as AND, OR...
read more
C++
Bit Manipulation in C
C++ Bit Manipulation
C Program to Check for Odd or Even Number
Last Updated: 15 July 2025
Write a C program to check whether the given number is an odd number or an even number.A number that is completely divisible by 2 is an even number and a number that is no...
read more
C Language
Number Divisibility
Natural Numbers
C Basic Programs
Bit Manipulation in C