Home » C++ String back() function

C++ String back() function

by Online Tutorials Library

C++ String back()

This function is used to access the last character of string.

Syntax

Consider a string s. Syntax would be:

Parameter

This function does not contain any parameter.

Return value

This function returns the reference of last character of the string.

Example

Let’s see the simple example to add a mew character at the end of the string

Output:

BTech in computer science  

In this example, ‘.’ character has been replaced by the ‘!’ character by using back function.

Next TopicC++ Strings

You may also like