I am up to upgrade a program to make it dynamically configurable from files. What i need is a number of vector viables, and that number being dependant of int variable.
int k=4 //loaded from file, i handled it
vector<string> NAME(k)
Moreover, names of those variables need to be rising numbers (first object: NAME1, second NAME2 etc.).
This is my first ever post there, so sorry for all the mistakes or lack of information :)