If I create a vector like vector v(10); what is the default value of each element?
vector v(10);
Also, what if it is a vector v(
vector v(
vector v;
its a empty vector with size and capacity as 0.