I need to store 5649576 values in an array.
Root terminated abruptly when I run it, but I have managed to isolate the problem and it has to do with the declaration of the array:
ULong64_t Storage[5649576];
Is there a maximum size for an array?
I would probably need a smaller size anyway, but I don’t know how many entries it will have. Is there a way of not declaring the size of an array from the start, but just “adding” entries? Something similar to pushback for a vector in C++.