I would like to create 250 vectors using a for{} loop, having the name changing by i.Exemple i want to calle it v'i'. So if i goes from 0 to 3, i should have v0 v1 v2 v3.
I am quite new to C++, and i have a huge vector (37000 values) wich i need to devide into 250 smaller vectors. I really have no idea how i can do that. Is there any type of task that can dvide a vector?
That sounds like a hell of a useless task. Either way, you can use multidimensional vectors. Either look up some info about it on google, or watch this video, I think he explains it atleast decent.