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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 13, 20262026-06-13T14:57:53+00:00 2026-06-13T14:57:53+00:00

I have a pointer that points to first byte of a shared memory which

  • 0

I have a pointer that points to first byte of a shared memory which is 66 bytes long. I want to create another pointer that points to a certain byte in shared memory (I’m saying certain byte because I want to get this info from user as integer like:”which byte do you want to reach?”). Is there a way of reaching a certain byte via shared memory’s pointer?

  • 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-06-13T14:57:55+00:00Added an answer on June 13, 2026 at 2:57 pm

    The shared memory part is irrelevant: what you have is a pointer and you want to increment n bytes:

    T* p = /* pointer to whatever */;
    char* nBytesIn = reinterpret_cast<char*>(p) + n;
    

    Or in your case, more safely:

    char* byte_in_buffer(T* p, std::size_t n)
    {
        if (n >= 66)
            throw std::out_of_range("Buffer is only 66 bytes!");
    
        return reinterpret_cast<char*>(p) + n;
    }
    

    You need to cast to char* because pointer arithmetic dictates that T* + n increments sizeof(T); we want to increment by bytes, and char is that type (with a size that’s always 1).

    (Aliasing a value through a char* is okay.)

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

First I want to say that, I have a vector which has thousand of
If I have a character pointer that contains NULL bytes is there any built
I have a 3x3 array that I'm trying to create a pointer to and
I have a Pointer class with a single attribute :contents , that points to
I have need for a function pointer that takes two arguments and returns a
I have a pointer to a QScriptEngine that I'm passing through the overloaded class
I have a pointer to a map that I am trying to delete (this
I have a pointer of a structure type that I made. On program start
I'm working on a problem that uses pointer arithmetic and I have found this
I have a method that uses ARC and takes an NSError pointer and I

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.