What is the Difference between "vector" and "array"?
vector is also an array but the size of a vector can change dynamically where in array its fixed. we can create some reserve space in vector where in array we cannot.