vector < int > v(120)
vector< int > v
v.reserve(120)
are theey both same???
vector < int > v(120)
vector< int > v
v.reserve(120)
are theey both same???
so v(120) assigns 120 spaces with 0’s and v.reserve(120) only allocates?
yeah right… . . …