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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 25, 20262026-05-25T18:28:21+00:00 2026-05-25T18:28:21+00:00

If have an array of char’s pulled out of an NSData object with getBytes:range:

  • 0

If have an array of char’s pulled out of an NSData object with getBytes:range:

I want to test if a particular bit is set. I would assume I would do it with a bitwise AND but it doesn’t seem to be working for me.

I have the following:

unsigned char firstBytes[3];
[data getBytes:&firstBytes range:range];

int bitIsSet = firstBytes[0] & 00100000;

if (bitIsSet) {
  // Do Something
}

The value of firstBytes[0] is 48 (or ‘0’ as an ASCII character). However bitIsSet always seems to be 0. I would imagine I am just doing something silly here, I am new to working on a bit level so maybe my logic is wrong.

  • 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-25T18:28:22+00:00Added an answer on May 25, 2026 at 6:28 pm

    If you put a 0 before a number you are saying it’s expressed in octal representation.
    00100000 actually means 32768 in decimal representation, 10000000 00000000 in binary representation.

    Try

    int bitIsSet = firstBytes[0] & 32;
    

    or

    int bitIsSet = firstBytes[0] & 0x20;
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

i have an char array b[20] which i want to write into a file
I have taken char data into database into array. now i want to convert
I am bit confused about how Java handle conversion. I have char array consist
Let's say I have an array : char[] chars={'X','X','m','a','t','t','X','X'}; I want to create String
I have char array(vector) of chars and I want to insert white spaces in
I have a char array of A, B, C and I want to print
I have a a char array: char* name = hello; I want to add
I have a char array which contains some value . I want to copy
I currently have the dynamic array: char *myData[500][10]; //myData is the name of an
I have a char array in a C application that I have to split

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.