Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 587381
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 13, 20262026-05-13T15:12:23+00:00 2026-05-13T15:12:23+00:00

This is a follow on question from my previously answered question here: Reading characters

  • 0

This is a follow on question from my previously answered question here:

Reading characters on a bit level

The problem that I seem to be having is understanding the basic concepts of bit manipulation in C. I understand what needs to be done but I am having trouble actually developing a solution to it.

An example:

Changing 01101010 to 00111110 using a logical operator.

I understand the principle and the need of a mask to implement the solution but I don’t understand how to do it programatically.

I come from a heavily based C# background and have only recently begun developing in C.

Can anyone give me some pointers or tips to complete the example?

Following is the solution incase anybody else finds it useful:

#include <stdio.h>
#include <stdlib.h>
#include <limits.h.>

int main()
{
    //01101010 - 106 Decimal
    char a = 0x6A;

    //01010100 - 84 Decimal
    char b = 0x54;

    //00111110 - Uses exclusive or (XOR)
    char c = a ^ b;

    //Prints out in Hex - 62 Decimal
    printf("%x",c);

    return 0;
}
  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-13T15:12:23+00:00Added an answer on May 13, 2026 at 3:12 pm

    You can XOR those together. The XOR of two bits is 1 if exactly one of the bits is 1.

        01101010
    XOR 00111110
    =
        01010100
    

    XORing the first value with this result will give you the second.

        01101010
    XOR 01010100
    =   00111110
    

    In C:

    char a = 0x6A;
    char b = 0x3E;
    char c = a ^ b;
    
    (c ^ a == a ^ b ^ a) && (a ^ b ^ a == b)
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

This is a follow up from a question of mine that was just answered
This is a follow-on question from the one I asked here . Can constraints
This is a bit of a follow-up from a previous question on improving rails
Note that this is a follow-up question from my previous one: How to memorize
This is a follow on from a previously posted question: How to generate a
This is a follow up question from my previous one found here I need
This is a follow-up question from here . The code is working great, it
This is a follow-on from a previous question ( here ), but I'm working
This is a follow up from my previous question I have this code basically
This is a follow-on from a previous SO question Anchoring CSS Repeating Background Image

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.