Adding a struct into an array(*)

时间:2023-03-09 02:47:47
Adding a struct into an array(*)

Question:

So lets say I have a struct like this:

struct example_structure
{
int thing_one;
int thing_two;
};

I also have an empty array which I am trying to fill with these structs. I am trying to add them as follows, but it doesn't seem to be working:

array[i].thing_one = x;
array[i].thing_two = y;

Instead of this is there a way to declare a variable of type example_structure and then add that to the array?

Answer:

struct example_structure
{
int thing_one;
int thing_two;
} myarray[100];

And then you would access those array elements like any other array:

myarray[10].thing_one=123;
myarray[10].thing_two=456;

if that is what you are trying to achieve.

website:

http://*.com/questions/29353253/adding-a-struct-into-an-array