Trying to create a struct that contains three arrays. I'm unsure of how large to make the arrays until the input is read.
How can i initialize these arrays in the struct if i'm unsure how large they are going to be in the struct init? I will know the total amount from the first line of input.
I would be the size that is read in from the use input. Should I just make i a huge number?
struct TaskSet
{
float priority[i];
float p[i];
float w[i];
float d[i];
};