Home » C++ Vector empty() function

C++ Vector empty() function

by Online Tutorials Library

C Vector empty()

This function determines whether the vector is empty or not.

Syntax

Consider a vector v. Syntax would be :

Parameter

It does not contain any parameter.

Return value

It returns a boolean value either 0 or 1.

Example 1

Let’s see a simple example.

Output:

Vector v is empty  

Example 2

Let’s see a simple example.

Output:

Vector v1 is not empty.  
Next TopicC++ Vector

You may also like