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

  • Home
  • SEARCH
  • 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 7632599
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 31, 20262026-05-31T06:40:02+00:00 2026-05-31T06:40:02+00:00

I am looking to create a fixed size struct header for variable sized array

  • 0

I am looking to create a fixed size struct header for variable sized array in the D programming language.. In “C” one would place a zero length or empty bracket Array as the last item declared within the fixed struct header, and then adjust ones call to Malloc, to include the additional storage required by the variable sized part of the data structure, who’s first element would be referenced by this last declaration.

But in the D language an Array is a more advanced object, and As I’m attempting to build up a set of structured Opcode strings, I really want to express a compound struct with a trailing memory reference as it’s final item ( the first element of the array that follows..

How does one declare / create / work with a compound variable length memory structure when using the D programming language?

  • 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-31T06:40:03+00:00Added an answer on May 31, 2026 at 6:40 am

    it’s the exact same way as you would in c

    struct VarArray(T){
    uint length;
    T[0] t;
    
    static VarArray!T* allocate(T)(uint length){
    VarArray!T* ret = enforce(malloc((VarArray!T).sizeof+T.sizeof*length));
    *ret.length=length;
    return ret;
    }
    
    }
    

    check http://dlang.org/arrays.html#static-arrays:

    A static array with a dimension of 0 is allowed, but no space is
    allocated for it. It’s useful as the last member of a variable length
    struct, or as the degenerate case of a template expansion.

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

Sidebar

Related Questions

I want to create a mutli dimensional array without a fixed size. I need
Im looking to create a control that would look like comic baloon. In WPF
I'm looking to create an Intellij IDEA language support plugin for Erlang. The first
If I were looking to create my own language are there any tools that
I'm looking for a way I can create a div which will be fixed
Possible Duplicate: HTML table with fixed headers? Looking for a solution to create a
I'm looking for a trick to create a fixed HTML object on the browser
I looking to create a custom calender with Zend Framework, I am hoping that
I'm looking to create a trigger or some other Oracle mechanism to delete old
I'm looking to create favicon.ico files programatically from Python, but PIL only has support

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.