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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 1, 20262026-06-01T18:07:13+00:00 2026-06-01T18:07:13+00:00

Now that C++11 allows you to create unions such as this union U {

  • 0

Now that C++11 allows you to create unions such as this

union U {
   int z;
   std::vector<char> data;
};

Is it possible somehow to pass this structure to C library that accepts a regular C union? How?

  • 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-01T18:07:15+00:00Added an answer on June 1, 2026 at 6:07 pm

    Can you pass that union? No. std::vector (and all other standard containers except std::array) will not produce types of a known layout. They may be standard layout types, but no particular layout is presented in the standard. Therefore, you cannot pass it to C.

    Note: By “pass it to C,” I assume you mean “build an equivalent C structure that has the same memory layout so that C code can touch the data.”

    But you can pass any union that contains types of a known layout as long as all of the types are standard layout types. They need not be trivial, but they must be standard layout.

    Also, if you don’t mind being compiler specific, you could look at your particular std::vector implementation (or use a specific implementation like boost::vector) and devise an equivalent C structure that stores essentially the same data. Of course, that assumes that the particular implementation is indeed standard layout; the C++ standard doesn’t require it to be, and the presence of an allocator might change this.

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

Sidebar

Related Questions

We have a feature that allows us to create SQL to get back data
Now that it's answered: Don't bother reading this question, it's a bit lengthy and
I want to create a database structure that will has good efficiency. Now database
In my project I have a controller that allows you to create multiple letters
I want to create a web page that allows the user to initiate a
I want to create a function that allows me to ban an account for
I am creating a service that allows my website visitors to create content (text)
I'm trying to create a C++ program that allows me to read from a
I am trying create a small web application that allows a user to login
I am trying to create a control that allows capture of a still 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.