Vector is like an array but with a small difference – array stores similar data types and cannot grow in size were as vector stores dissimilar types and can grow the size as needed at runtime. Internally, vector stores data in array form. For this reason, with array and vector, we can access the element […]
↧