I have an array 'y' with x no. of elements inside it (the number 'x' is given by user), I need to create an array of structures which has elements of exactly the same type as that in array 'y' i.e the array of structures would have 'x' elements.
|
|
If I understand you right, you have an "array" of some type, and the number of elements is decided by the user. I'm guessing you allocate it using
And now you want to create a similar "array" from a structure, with the same number of elements. Why can't you do it just like you do for
|
|||
|
|
|
You probably need a structure such as this. The type of the array is shown as
You can then allocate an array of that type:
You should error check the memory allocations:
Note that each array in the Note that the C99 flexible array member is not really a help here. You cannot have an array of a structure containing a flexible array member, though you could have an array of pointers to them. |
||||
|
|
|||
|
|