76
C++ Vector clear()
This function removes all the elements from the vector.
Syntax
Consider a vector v. Syntax would be:
Parameter
It does not contain any parameter.
Return value
It does not return any value.
Example
Let’s see a simple example.
Output:
Elements of v vector are :1 2 3 4 5
In this example, clear() function removes all the elements from the vector.
Next TopicC++ Vector