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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 5, 20262026-06-05T23:11:34+00:00 2026-06-05T23:11:34+00:00

I have buffer/payload of integers where every 4 bytes is a field which i

  • 0

I have buffer/payload of integers where every 4 bytes is a field which i need to extract.
I have a pointer pointing to the buffer. Now I have to extract 4 bytes and assign it to variable until I reach the end of buffer.
The pointer is uint8_t pointer to the buf and buf is a buffer object whose details are encapsulated.
What is the best and the most elegant way to do this?
I am coding in c++. Any suggestions is appreciated.

  • 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-05T23:11:35+00:00Added an answer on June 5, 2026 at 11:11 pm

    If the integers in your buffer are word-aligned, you could try:

    const char* ptr; // this points to a position in a buffer
    int value = reinterpret_cast<int*>(ptr);
    

    Otherwise, perhaps safer and more preferable:

    const char* ptr;
    int value;
    std::copy(ptr, ptr+sizeof(int), reinterpret_cast<char*>(value));
    

    BTW: make sure you don’t have a problem with endianess (i.e. both your machine and the machine that saved those ints must have the same endianess for this to work, otherwise you need to compensate). You’re relying on your specific implementation of C++ here.

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

Sidebar

Related Questions

I have a buffer object as source which I need to play in windows
I have a raw buffer with it i need to make 3 others, the
I have a direct buffer holding Integers that are already sorted (i.e. 1,1,3,3,3,3,7,7,....). Most
I have a buffer of size 1500. In that buffer I need to check
I have a buffer with many positive 16bit values (which are stored as doubles)
I have this buffer which I use for store some different types of data:
I have a buffer receiving data, which means the data are like 'stream' and
I have a buffer with n bytes, but I only want read in sizeof(something)
I have a buffer, that is char pointer. The content of this is something
Say you have a buffer of size N which must be set to definite

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.