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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 12, 20262026-06-12T22:46:30+00:00 2026-06-12T22:46:30+00:00

I assume this is basic question, but I’m not English and not used still

  • 0

I assume this is basic question, but I’m not English and not used still with the terms of programming language, that’s why I question here (I couldn’t find).

Here’s my context:

I have a structure (let’s simplify it) as follow

struct _unit
{
  char value;
} Unit;

and in the main program, I’d like to have a row of pointers that points a row of other pointers pointing structures Unit.
Something like

int main ()
{
  Unit** units;

  ..

  printf("%d", units[0][0].value);

  ...
}

I get a little confused, what is the way to go so Unit‘s can be accessed as a multi-dimensional array.

here’s my try

{
  units = (Unit**)malloc(sizeof(void*));

  units[0][0] = (Unit*)malloc(sizeof(Unit));
}
  • 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-12T22:46:31+00:00Added an answer on June 12, 2026 at 10:46 pm

    You’re almost there.

    First, you need to declare your type, as you have, as Unit**. Then, on that, allocate enough Unit* pointers to hold the number of rows. Finally, loop over those created pointers, creating each Unit.

    For example:

    int i;
    Unit** u;
    
    // Allocate memory to store 50 pointers to your columns.    
    u = malloc(sizeof(Unit*) * 50);
    
    // Now, for each column, allocate 50 Units, one for each row.
    for(i=0; i<50; i++) {
        u[i] = malloc(sizeof(Unit) * 50);
    }
    
    // You can now access using u[x][y];
    

    That’s the traditional way of doing it. C99 also introduced a different syntax to do this, as follows:

    Unit (*u)[n] = malloc(sizeof(Unit[n][n])) // n = size of your matrix
    

    From: https://stackoverflow.com/a/12805980/235700

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

Sidebar

Related Questions

This is a fairly basic question about state server but assume there are 2
I'd assume this question has been asked to death, but I'm not finding anything
This seems a basic question I know but I've not been able to find
This may be a basic question but the answer has alluded me so far.
This is perhaps a painfully basic question to answer, but I'm wondering about performance
This might be a bit of a basic question, but what is the difference
This is my first question here on stackoverflow, so I hope that I am
This is may be not program question, but i guess its program logic question.
I realise that this question may be almost impossible to answer definitively, but: Is
This is a pretty basic OO question but I'm curious if I've been going

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.