C, How to malloc the correct amount of space for an array of a struct inside another struct?









up vote
0
down vote

favorite












I have two structs. I am trying the make an array of 'struct bird' inside another struct 'struct nest'.



I am having a hard time allocating the correct amount of space for the bird array when I am creating the nest struct.



Below is my code.



struct bird 
int value;
;
typedef struct bird bird;

struct nest
int nb_birds;
bird * * birds; //bird * = points to the bird struct, * birds = Array with size unknown
;
typedef struct nest nest;

nest * create_nest(int nb_birds)
nest * n = (nest *) malloc(sizeof(nest));
n->nb_birds = nb_birds;

//This is where I am stuck
***n->birds = (bird *) malloc(sizeof(bird) * nb_birds);***


int i;
for(i = 0; i < nb_birds; i++)
n->birds[i]=NULL;
return n;










share|improve this question























  • You forgot the prototype and/or function declaration of that snippet of code.
    – usr2564301
    Nov 11 at 12:27














up vote
0
down vote

favorite












I have two structs. I am trying the make an array of 'struct bird' inside another struct 'struct nest'.



I am having a hard time allocating the correct amount of space for the bird array when I am creating the nest struct.



Below is my code.



struct bird 
int value;
;
typedef struct bird bird;

struct nest
int nb_birds;
bird * * birds; //bird * = points to the bird struct, * birds = Array with size unknown
;
typedef struct nest nest;

nest * create_nest(int nb_birds)
nest * n = (nest *) malloc(sizeof(nest));
n->nb_birds = nb_birds;

//This is where I am stuck
***n->birds = (bird *) malloc(sizeof(bird) * nb_birds);***


int i;
for(i = 0; i < nb_birds; i++)
n->birds[i]=NULL;
return n;










share|improve this question























  • You forgot the prototype and/or function declaration of that snippet of code.
    – usr2564301
    Nov 11 at 12:27












up vote
0
down vote

favorite









up vote
0
down vote

favorite











I have two structs. I am trying the make an array of 'struct bird' inside another struct 'struct nest'.



I am having a hard time allocating the correct amount of space for the bird array when I am creating the nest struct.



Below is my code.



struct bird 
int value;
;
typedef struct bird bird;

struct nest
int nb_birds;
bird * * birds; //bird * = points to the bird struct, * birds = Array with size unknown
;
typedef struct nest nest;

nest * create_nest(int nb_birds)
nest * n = (nest *) malloc(sizeof(nest));
n->nb_birds = nb_birds;

//This is where I am stuck
***n->birds = (bird *) malloc(sizeof(bird) * nb_birds);***


int i;
for(i = 0; i < nb_birds; i++)
n->birds[i]=NULL;
return n;










share|improve this question















I have two structs. I am trying the make an array of 'struct bird' inside another struct 'struct nest'.



I am having a hard time allocating the correct amount of space for the bird array when I am creating the nest struct.



Below is my code.



struct bird 
int value;
;
typedef struct bird bird;

struct nest
int nb_birds;
bird * * birds; //bird * = points to the bird struct, * birds = Array with size unknown
;
typedef struct nest nest;

nest * create_nest(int nb_birds)
nest * n = (nest *) malloc(sizeof(nest));
n->nb_birds = nb_birds;

//This is where I am stuck
***n->birds = (bird *) malloc(sizeof(bird) * nb_birds);***


int i;
for(i = 0; i < nb_birds; i++)
n->birds[i]=NULL;
return n;







c arrays struct malloc






share|improve this question















share|improve this question













share|improve this question




share|improve this question








edited Nov 11 at 12:33

























asked Nov 11 at 12:24









seamus

6342921




6342921











  • You forgot the prototype and/or function declaration of that snippet of code.
    – usr2564301
    Nov 11 at 12:27
















  • You forgot the prototype and/or function declaration of that snippet of code.
    – usr2564301
    Nov 11 at 12:27















You forgot the prototype and/or function declaration of that snippet of code.
– usr2564301
Nov 11 at 12:27




You forgot the prototype and/or function declaration of that snippet of code.
– usr2564301
Nov 11 at 12:27












1 Answer
1






active

oldest

votes

















up vote
1
down vote



accepted










You want to allocate array of nb_birds pointers to bird structure, so size to allocation is nb_birds * sizeof(bird *).



Then you want to store pointer to this array, so cast should be to address of the first element — address of bird *, i.e. bird **.



Hence,



n->birds = (bird **) malloc(sizeof(bird *) * nb_birds);


p.s. If you want to allocate N objects on which ptr points to, you can write, or, at least, think about as



ptr = (typeof(ptr)) malloc(sizeof(*ptr) * N);


Update:



It should be noted that malloc returns void * pointer that compatible with any pointer type without explicit casting. So, quoted program line can be as short as



ptr = malloc(N * sizeof(*ptr));


Some programmers, despite them well informed about this void * property, strongly prefer to use explicit cast in such cases. I'm not one of them, but I account such casts as stylistіc preference (like () for sizeof operator). So I left the casting in code above because OP use it, and I thought it was his choice.



Neverthless it is needed (at least for answer completeness and for further readers) to note that such cast is unnecessary and excessive.
.



Thank you Paul Ogilvie and chux for patient notes in the comments.






share|improve this answer


















  • 1




    ..and don't cast the result of malloc. It returns void * which is compatible with any pointer type. n->birds = malloc(sizeof(bird *) * nb_birds); is all the answer requires.
    – Paul Ogilvie
    Nov 11 at 12:51











  • Agree, casting of void * returned by malloc is redundant (and I never use it). But some programmers prefer to explicit cast and I left this part of code as is. Anyway, your comment is very useful.
    – ReAl
    Nov 11 at 12:57











  • ptr = malloc(sizeof *ptr * N); is even easier to code right, review and maintain. No "type" needed as in n->birds = malloc(sizeof *(n->birds) * nb_birds);
    – chux
    Nov 11 at 16:41










  • @chux Your comment is the same as one of Paul Ogilvie above. But I added note because it is hot topic :-). Thanks for help in war with my lazyness.
    – ReAl
    Nov 11 at 18:06










Your Answer






StackExchange.ifUsing("editor", function ()
StackExchange.using("externalEditor", function ()
StackExchange.using("snippets", function ()
StackExchange.snippets.init();
);
);
, "code-snippets");

StackExchange.ready(function()
var channelOptions =
tags: "".split(" "),
id: "1"
;
initTagRenderer("".split(" "), "".split(" "), channelOptions);

StackExchange.using("externalEditor", function()
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled)
StackExchange.using("snippets", function()
createEditor();
);

else
createEditor();

);

function createEditor()
StackExchange.prepareEditor(
heartbeatType: 'answer',
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader:
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
,
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
);



);













draft saved

draft discarded


















StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53248732%2fc-how-to-malloc-the-correct-amount-of-space-for-an-array-of-a-struct-inside-ano%23new-answer', 'question_page');

);

Post as a guest















Required, but never shown

























1 Answer
1






active

oldest

votes








1 Answer
1






active

oldest

votes









active

oldest

votes






active

oldest

votes








up vote
1
down vote



accepted










You want to allocate array of nb_birds pointers to bird structure, so size to allocation is nb_birds * sizeof(bird *).



Then you want to store pointer to this array, so cast should be to address of the first element — address of bird *, i.e. bird **.



Hence,



n->birds = (bird **) malloc(sizeof(bird *) * nb_birds);


p.s. If you want to allocate N objects on which ptr points to, you can write, or, at least, think about as



ptr = (typeof(ptr)) malloc(sizeof(*ptr) * N);


Update:



It should be noted that malloc returns void * pointer that compatible with any pointer type without explicit casting. So, quoted program line can be as short as



ptr = malloc(N * sizeof(*ptr));


Some programmers, despite them well informed about this void * property, strongly prefer to use explicit cast in such cases. I'm not one of them, but I account such casts as stylistіc preference (like () for sizeof operator). So I left the casting in code above because OP use it, and I thought it was his choice.



Neverthless it is needed (at least for answer completeness and for further readers) to note that such cast is unnecessary and excessive.
.



Thank you Paul Ogilvie and chux for patient notes in the comments.






share|improve this answer


















  • 1




    ..and don't cast the result of malloc. It returns void * which is compatible with any pointer type. n->birds = malloc(sizeof(bird *) * nb_birds); is all the answer requires.
    – Paul Ogilvie
    Nov 11 at 12:51











  • Agree, casting of void * returned by malloc is redundant (and I never use it). But some programmers prefer to explicit cast and I left this part of code as is. Anyway, your comment is very useful.
    – ReAl
    Nov 11 at 12:57











  • ptr = malloc(sizeof *ptr * N); is even easier to code right, review and maintain. No "type" needed as in n->birds = malloc(sizeof *(n->birds) * nb_birds);
    – chux
    Nov 11 at 16:41










  • @chux Your comment is the same as one of Paul Ogilvie above. But I added note because it is hot topic :-). Thanks for help in war with my lazyness.
    – ReAl
    Nov 11 at 18:06














up vote
1
down vote



accepted










You want to allocate array of nb_birds pointers to bird structure, so size to allocation is nb_birds * sizeof(bird *).



Then you want to store pointer to this array, so cast should be to address of the first element — address of bird *, i.e. bird **.



Hence,



n->birds = (bird **) malloc(sizeof(bird *) * nb_birds);


p.s. If you want to allocate N objects on which ptr points to, you can write, or, at least, think about as



ptr = (typeof(ptr)) malloc(sizeof(*ptr) * N);


Update:



It should be noted that malloc returns void * pointer that compatible with any pointer type without explicit casting. So, quoted program line can be as short as



ptr = malloc(N * sizeof(*ptr));


Some programmers, despite them well informed about this void * property, strongly prefer to use explicit cast in such cases. I'm not one of them, but I account such casts as stylistіc preference (like () for sizeof operator). So I left the casting in code above because OP use it, and I thought it was his choice.



Neverthless it is needed (at least for answer completeness and for further readers) to note that such cast is unnecessary and excessive.
.



Thank you Paul Ogilvie and chux for patient notes in the comments.






share|improve this answer


















  • 1




    ..and don't cast the result of malloc. It returns void * which is compatible with any pointer type. n->birds = malloc(sizeof(bird *) * nb_birds); is all the answer requires.
    – Paul Ogilvie
    Nov 11 at 12:51











  • Agree, casting of void * returned by malloc is redundant (and I never use it). But some programmers prefer to explicit cast and I left this part of code as is. Anyway, your comment is very useful.
    – ReAl
    Nov 11 at 12:57











  • ptr = malloc(sizeof *ptr * N); is even easier to code right, review and maintain. No "type" needed as in n->birds = malloc(sizeof *(n->birds) * nb_birds);
    – chux
    Nov 11 at 16:41










  • @chux Your comment is the same as one of Paul Ogilvie above. But I added note because it is hot topic :-). Thanks for help in war with my lazyness.
    – ReAl
    Nov 11 at 18:06












up vote
1
down vote



accepted







up vote
1
down vote



accepted






You want to allocate array of nb_birds pointers to bird structure, so size to allocation is nb_birds * sizeof(bird *).



Then you want to store pointer to this array, so cast should be to address of the first element — address of bird *, i.e. bird **.



Hence,



n->birds = (bird **) malloc(sizeof(bird *) * nb_birds);


p.s. If you want to allocate N objects on which ptr points to, you can write, or, at least, think about as



ptr = (typeof(ptr)) malloc(sizeof(*ptr) * N);


Update:



It should be noted that malloc returns void * pointer that compatible with any pointer type without explicit casting. So, quoted program line can be as short as



ptr = malloc(N * sizeof(*ptr));


Some programmers, despite them well informed about this void * property, strongly prefer to use explicit cast in such cases. I'm not one of them, but I account such casts as stylistіc preference (like () for sizeof operator). So I left the casting in code above because OP use it, and I thought it was his choice.



Neverthless it is needed (at least for answer completeness and for further readers) to note that such cast is unnecessary and excessive.
.



Thank you Paul Ogilvie and chux for patient notes in the comments.






share|improve this answer














You want to allocate array of nb_birds pointers to bird structure, so size to allocation is nb_birds * sizeof(bird *).



Then you want to store pointer to this array, so cast should be to address of the first element — address of bird *, i.e. bird **.



Hence,



n->birds = (bird **) malloc(sizeof(bird *) * nb_birds);


p.s. If you want to allocate N objects on which ptr points to, you can write, or, at least, think about as



ptr = (typeof(ptr)) malloc(sizeof(*ptr) * N);


Update:



It should be noted that malloc returns void * pointer that compatible with any pointer type without explicit casting. So, quoted program line can be as short as



ptr = malloc(N * sizeof(*ptr));


Some programmers, despite them well informed about this void * property, strongly prefer to use explicit cast in such cases. I'm not one of them, but I account such casts as stylistіc preference (like () for sizeof operator). So I left the casting in code above because OP use it, and I thought it was his choice.



Neverthless it is needed (at least for answer completeness and for further readers) to note that such cast is unnecessary and excessive.
.



Thank you Paul Ogilvie and chux for patient notes in the comments.







share|improve this answer














share|improve this answer



share|improve this answer








edited Nov 11 at 18:04

























answered Nov 11 at 12:37









ReAl

596216




596216







  • 1




    ..and don't cast the result of malloc. It returns void * which is compatible with any pointer type. n->birds = malloc(sizeof(bird *) * nb_birds); is all the answer requires.
    – Paul Ogilvie
    Nov 11 at 12:51











  • Agree, casting of void * returned by malloc is redundant (and I never use it). But some programmers prefer to explicit cast and I left this part of code as is. Anyway, your comment is very useful.
    – ReAl
    Nov 11 at 12:57











  • ptr = malloc(sizeof *ptr * N); is even easier to code right, review and maintain. No "type" needed as in n->birds = malloc(sizeof *(n->birds) * nb_birds);
    – chux
    Nov 11 at 16:41










  • @chux Your comment is the same as one of Paul Ogilvie above. But I added note because it is hot topic :-). Thanks for help in war with my lazyness.
    – ReAl
    Nov 11 at 18:06












  • 1




    ..and don't cast the result of malloc. It returns void * which is compatible with any pointer type. n->birds = malloc(sizeof(bird *) * nb_birds); is all the answer requires.
    – Paul Ogilvie
    Nov 11 at 12:51











  • Agree, casting of void * returned by malloc is redundant (and I never use it). But some programmers prefer to explicit cast and I left this part of code as is. Anyway, your comment is very useful.
    – ReAl
    Nov 11 at 12:57











  • ptr = malloc(sizeof *ptr * N); is even easier to code right, review and maintain. No "type" needed as in n->birds = malloc(sizeof *(n->birds) * nb_birds);
    – chux
    Nov 11 at 16:41










  • @chux Your comment is the same as one of Paul Ogilvie above. But I added note because it is hot topic :-). Thanks for help in war with my lazyness.
    – ReAl
    Nov 11 at 18:06







1




1




..and don't cast the result of malloc. It returns void * which is compatible with any pointer type. n->birds = malloc(sizeof(bird *) * nb_birds); is all the answer requires.
– Paul Ogilvie
Nov 11 at 12:51





..and don't cast the result of malloc. It returns void * which is compatible with any pointer type. n->birds = malloc(sizeof(bird *) * nb_birds); is all the answer requires.
– Paul Ogilvie
Nov 11 at 12:51













Agree, casting of void * returned by malloc is redundant (and I never use it). But some programmers prefer to explicit cast and I left this part of code as is. Anyway, your comment is very useful.
– ReAl
Nov 11 at 12:57





Agree, casting of void * returned by malloc is redundant (and I never use it). But some programmers prefer to explicit cast and I left this part of code as is. Anyway, your comment is very useful.
– ReAl
Nov 11 at 12:57













ptr = malloc(sizeof *ptr * N); is even easier to code right, review and maintain. No "type" needed as in n->birds = malloc(sizeof *(n->birds) * nb_birds);
– chux
Nov 11 at 16:41




ptr = malloc(sizeof *ptr * N); is even easier to code right, review and maintain. No "type" needed as in n->birds = malloc(sizeof *(n->birds) * nb_birds);
– chux
Nov 11 at 16:41












@chux Your comment is the same as one of Paul Ogilvie above. But I added note because it is hot topic :-). Thanks for help in war with my lazyness.
– ReAl
Nov 11 at 18:06




@chux Your comment is the same as one of Paul Ogilvie above. But I added note because it is hot topic :-). Thanks for help in war with my lazyness.
– ReAl
Nov 11 at 18:06

















draft saved

draft discarded
















































Thanks for contributing an answer to Stack Overflow!


  • Please be sure to answer the question. Provide details and share your research!

But avoid


  • Asking for help, clarification, or responding to other answers.

  • Making statements based on opinion; back them up with references or personal experience.

To learn more, see our tips on writing great answers.





Some of your past answers have not been well-received, and you're in danger of being blocked from answering.


Please pay close attention to the following guidance:


  • Please be sure to answer the question. Provide details and share your research!

But avoid


  • Asking for help, clarification, or responding to other answers.

  • Making statements based on opinion; back them up with references or personal experience.

To learn more, see our tips on writing great answers.




draft saved


draft discarded














StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53248732%2fc-how-to-malloc-the-correct-amount-of-space-for-an-array-of-a-struct-inside-ano%23new-answer', 'question_page');

);

Post as a guest















Required, but never shown





















































Required, but never shown














Required, but never shown












Required, but never shown







Required, but never shown

































Required, but never shown














Required, but never shown












Required, but never shown







Required, but never shown







這個網誌中的熱門文章

Barbados

How to read a connectionString WITH PROVIDER in .NET Core?

Node.js Script on GitHub Pages or Amazon S3