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 4274570
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 21, 20262026-05-21T07:51:54+00:00 2026-05-21T07:51:54+00:00

program : typedef bitset<8> bits; char original = 0xF0F0F0F0; char Mask = 0xFFFF0000; char

  • 0

program:

typedef bitset<8> bits;
char original = 0xF0F0F0F0;
char Mask = 0xFFFF0000;
char newBits = 0x0000AAAA;

/*& operation with "0bit set 0" & "1bit give no change to original byte" */
cout<<"Original o: "<<bits(original)<<endl;
cout<<"NewBits: "<<bits(newBits)<<endl;
cout<<"Mask m: "<<bits(Mask)<<endl;
cout<<"o & m with Mask: "<<bits(original & Mask)<<endl;/*0 set original bit as 0 */

Result:

Original o: 11110000

NewBits: 10101010

Mask m: 00000000

o & m with Mask: 00000000

Result 10101010

I understand the hex & its result.. but……. o & m == 0000 0000 so bits(o & m | newBits) result should be 0000 0000, not 1010 1010…

Where i am missing the concept…

Can anyone help me please…

Expecting a good response

Thanks

  • 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-21T07:51:54+00:00Added an answer on May 21, 2026 at 7:51 am

    o & m = 0000 0000 and newBits = 1010 1010. So if you OR them (bitwise) you will get the result as 1010 1010 as 0|0=0, 0|1=1, 1|0=1, 1|1=1.

    0000 0000 OR WITH
    1010 1010
    -----------------
    1010 1010
    -----------------
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

Here is the sample program and its output. typedef struct{ char name[30]; int empno;
I have a weird typedef statement in a C++ program, generated by Py++. double
I'm using a typedef to define the type of a container in my program
Write a program to access the function foo using the structure structure2. typedef struct
I have a problem with the typedef keywords in C language. In my program,
Consider this program: #include <map> #include <vector> typedef std::vector<int> IntVector; typedef std::map<IntVector,double> Map; void
I am writing a C program. In the first lines, I have typedef float
If I have a typedef of a struct typedef struct { char SmType; char
Suppose my program is: typedef int MYINT; int main() { MYINT x = 5;
Coding in C: typedef struct { char *string; int one; int two; } Example;

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.