Vector declaration

difference between vector v(100);
and vector v;
v.reserve(100);

Just a shorthand for the second one

means these both are same