Home » C++ String reserve() function

C++ String reserve() function

by Online Tutorials Library

C++ String reserve()

This function requests a change in capacity.

Syntax

Consider a string str and l is planned length of the string. Its syntax would be:

Parameter

l is the planned length for the string

Note: capacity of the string can be greater than or equal to ‘l’.

Return value

It does not return any value.

Example

Let’s see the simple example.

Output:

Capacity is 27  Now,capacity is : 54  

In this example, we observe that how capacity of the string varies using reserve() function.

Next TopicC++ Strings

You may also like