Home » C++ Vector max_size() function

C++ Vector max_size() function

by Online Tutorials Library

C++ Vector max_size()

This function is used to provide the maximum size that vector can hold.

Syntax

Consider a vector ‘v’ and maximum size ‘m’. Syntax would be :

Parameter

It does not contain any parameter.

Return value

It returns the maximum number of elements that vector can hold.

Example 1

Let’s see a simple example.

Output:

4611686018427387903  
Next TopicC++ Vector

You may also like