What the difference between:
vector<int> v4=v1;
and:
vector<int> v4(v1);
Aren't both the same thing and call copy c'tor?
Note: v1 and v4 are vectors of int
What the difference between:
vector<int> v4=v1;
and:
vector<int> v4(v1);
Aren't both the same thing and call copy c'tor?
Note: v1 and v4 are vectors of int