Home » C++ Vector clear() function

C++ Vector clear() function

by Online Tutorials Library

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

You may also like