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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 26, 20262026-05-26T00:35:23+00:00 2026-05-26T00:35:23+00:00

Following this answer , I made a simple example to be sure I properly

  • 0

Following this answer, I made a simple example to be sure I properly understood:

#include <stdlib.h>
#include <stdio.h>

typedef struct
{
  int x;
} data;

void fill_data (data *** ptr_all, int l)
{
  int i = 0;
  *ptr_all = (data**) calloc(l, sizeof(data));
  if ((*ptr_all) == NULL){
    fprintf(stderr, "error: can't allocate memory");
    abort();
  }
  for (i = 0; i < l; i++)
  {
    data * d = (data*) calloc(1, sizeof(data));
    if (d == NULL){
      fprintf(stderr, "error: can't allocate memory for %i-th data", i+1);
      abort();
    }
    d->x = i;
    (*ptr_all)[i] = d;
  }
}

int main(int argc, char *argv[])
{
  int i = 0, l = 5;
  data ** all = NULL;

  fill_data (&all, l);

  for (i = 0; i < l; i++)
  {
    printf("%i\n", all[i]->x);
  }

  return EXIT_SUCCESS;
}

However, after compiling and running it, I see that the first element is wrong:

$ gcc -Wall test.c
$ ~/bin/a.out 
161276080
1
2
3
4

I can see that in my function fill_data I don’t initialize ptr_all, but only *ptr_all, and this may be the cause of the problem. But how should I do?

  • 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-26T00:35:24+00:00Added an answer on May 26, 2026 at 12:35 am

    Change:

    *ptr_all = (data**) calloc(l, sizeof(data));
    

    to:

    *ptr_all = (data**) calloc(l, sizeof(data*));
    

    You’re allocating l ints whereas you need to be allocating l pointers. You’re almost certainly building and running this on a 64 bit OS (where sizeof(void *) > sizeof(int)), otherwise this bug would have remained dormant.

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

Sidebar

Related Questions

I'm following along with this useful looking answer to my question . It seems
Following this example, I can list all elements into a pdf file import pyPdf
There is probably a simple answer to this question but I do not have
Following this question: Good crash reporting library in c# Is there any library like
I've been following this tutorial (lesson 6) in order to build and deploy a
So I am following this guide: http://technotes.1000lines.net/?p=23 and I am going through the steps.
I'm following this tutorial (seems good) for Rails. After I run ruby script/generate scaffold
I'm building a Windows service and following this MSDN article , but I'm stuck
I see lots of TDD practitioners following this cycle: 1) Write your test as
I have ASP.Net code similar to the following (this is inside a FIELDSET): <ol>

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.