I want to be able to initialize a vector of a size ‘SIZE’ before main. Normally I would do
static vector<int> myVector(4,100);
int main() {
// Here I have a vector of size 4 with all the entries equal to 100
}
But the problem is that I would like to initialize the first item of the vector to be of a certain value, and the other to another value.
Is there an easy way to do this?
Here’s alternative solution: