C++ .front()

MamtaWardhani's avatar
Published Oct 31, 2025
Contribute to Docs

The .front() method returns a reference to the first character in a string. The .front() method returns a reference to the first character in a string, allowing both access and modification of the character at the front position.

  • Looking for an introduction to the theory behind programming? Master Python while learning data structures, algorithms, and more!
    • Includes 6 Courses
    • With Professional Certification
    • Beginner Friendly.
      75 hours
  • Learn C++ — a versatile programming language that’s important for developing software, games, databases, and more.
    • Beginner Friendly.
      11 hours

Syntax

string.front()

Parameters:

The .front() method takes no parameters.

Return value:

The .front() method returns a reference to the first character of the string.

Note: Calling .front() on an empty string results in undefined behavior.

Example 1: Accessing First Character

This example demonstrates how to access the first character of a string using the .front() method:

#include <iostream>
#include <string>
int main() {
std::string greeting = "Hello";
// Access the first character
char first = greeting.front();
std::cout << "First character: " << first << std::endl;
return 0;
}

This example results in the following output:

First character: H

Example 2: Modifying First Character

This example shows how to modify the first character of a string, which can be useful for text processing tasks like capitalizing sentences:

#include <iostream>
#include <string>
int main() {
std::string sentence = "hello world";
// Capitalize the first character
sentence.front() = 'H';
std::cout << "Modified sentence: " << sentence << std::endl;
return 0;
}

This example results in the following output:

Modified sentence: Hello world

Codebyte Example: Password Validation

This example demonstrates a practical use case where .front() helps validate password requirements by checking the first character:

Code
Output
Loading...

Frequently Asked Questions

1. What is front() in C++?

The .front() method is a member function of the std::string class that returns a reference to the first character in the string, allowing both read and write access.

2. What does front() return?

The .front() method returns a reference to the first character of the string. This reference can be used to both access and modify the character.

3. How to add characters in front of a string in C++?

To add characters at the beginning of a string in C++, use the .insert() method with position 0, or use the + operator to concatenate a character or string before the original string. The .front() method only provides access to modify the existing first character, not to insert new ones.

All contributors

Contribute to Docs

Learn C++ on Codecademy

  • Looking for an introduction to the theory behind programming? Master Python while learning data structures, algorithms, and more!
    • Includes 6 Courses
    • With Professional Certification
    • Beginner Friendly.
      75 hours
  • Learn C++ — a versatile programming language that’s important for developing software, games, databases, and more.
    • Beginner Friendly.
      11 hours