difference between vector v(100);
and vector v;
v.reserve(100);
Vector declaration
Just a shorthand for the second one
means these both are same
difference between vector v(100);
and vector v;
v.reserve(100);
Just a shorthand for the second one
means these both are same