Convert character array to string in C++ Last Updated : 11 Jan, 2025 Comments Improve Suggest changes Like Article Like Report This article shows how to convert a character array to a string in C++. The std::string in c++ has a lot of inbuilt functions which makes implementation much easier than handling a character array. Hence, it would often be easier to work if we convert a character array to string. Examples: Input: char s[] = { 'g', 'e', 'e', 'k', 's', 'f', 'o', 'r', 'g', 'e', 'e', 'k', 's', '\0' } ;Output: string s = "geeksforgeeks" ;Input: char s[] = { 'c', 'o', 'd', 'i', 'n', 'g', '\0' } ;Output: string s = "coding" ; Method 1: Approach: Get the character array and its size.Create an empty string.Iterate through the character array.As you iterate keep on concatenating the characters we encounter in the character array to the string.Return the string.Below is the implementation of the above approach. C++ // Demonstrates conversion // from character array to string #include <bits/stdc++.h> using namespace std; // converts character array // to string and returns it string convertToString(char* a, int size) { int i; string s = ""; for (i = 0; i < size; i++) { s = s + a[i]; } return s; } // Driver code int main() { char a[] = { 'C', 'O', 'D', 'E' }; char b[] = "geeksforgeeks"; int a_size = sizeof(a) / sizeof(char); int b_size = sizeof(b) / sizeof(char); string s_a = convertToString(a, a_size); string s_b = convertToString(b, b_size); cout << s_a << endl; cout << s_b << endl; return 0; } Method 2: The std::string has an inbuilt constructor which does the work for us. This constructor takes in a null-terminated character sequence as it's input. However, we can use this method only at the time of string declaration and it cannot be used again for the same string because it uses a constructor which is only called when we declare a string.Approach: Get the character array and its size.Declare a string (i.e, an object of the string class) and while doing so give the character array as its parameter for its constructor.Use the syntax: string string_name(character_array_name);Return the string.Below is the implementation of the above approach. C++ // Demonstrates conversion // from character array to string #include <bits/stdc++.h> using namespace std; // uses the constructor in string class // to convert character array to string string convertToString(char* a) { string s(a); // we cannot use this technique again // to store something in s // because we use constructors // which are only called // when the string is declared. // Remove commented portion // to see for yourself /* char demo[] = "gfg"; s(demo); // compilation error */ return s; } // Driver code int main() { char a[] = { 'C', 'O', 'D', 'E', '\0' }; char b[] = "geeksforgeeks"; string s_a = convertToString(a); string s_b = convertToString(b); cout << s_a << endl; cout << s_b << endl; return 0; } Method 3: Another way to do so would be to use an overloaded '=' operator which is also available in the C++ std::string. Approach: Get the character array and its size.Declare a string.Use the overloaded '=' operator to assign the characters in the character array to the string.Return the string.Below is the implementation of the above approach. C++ // Demonstrates conversion // from character array to string #include <bits/stdc++.h> using namespace std; // uses overloaded '=' operator from string class // to convert character array to string string convertToString(char* a) { string s = a; return s; } // Driver code int main() { char a[] = { 'C', 'O', 'D', 'E', '\0' }; char b[] = "geeksforgeeks"; string s_a = convertToString(a); string s_b = convertToString(b); cout << s_a << endl; cout << s_b << endl; return 0; } Comment More infoAdvertise with us Next Article Convert character array to string in C++ N Nindo Follow Improve Article Tags : Strings C++ Programs C++ DSA cpp-strings +1 More Practice Tags : CPPcpp-stringsStrings Similar Reads Convert String to Char Array in C++ In C++, we usually represent text data using the std::string object. But in some cases, we may need to convert a std::string to a character array, the traditional C-style strings. In this article, we will learn how to convert the string to char array in C++.ExamplesInput: str = "geeksforgeeks"Output 4 min read Convert Vector of Characters to String in C++ In this article, we will learn different methods to convert the vector of character to string in C++.The most efficient method to convert the vector of characters to string is by using string's range constructor. Letâs take a look at an example:C++#include <bits/stdc++.h> using namespace std; 2 min read How to Convert a Single Character to String in C++? A string is a generally made up of a sequence of multiple characters. In this article, we will learn how to convert a single character to a string in C++.Example:Input: c = 'A'Output: s = "a"Explanation: Character c is converted to a string.Input: c = '#'Output: s = "#"Explanation: Character c is co 4 min read Convert char* to std::string in C++ Strings are generally represented as an instance of std::string class in C++. But the language also supports the older C-Style representation where they are represented as array of characters (char* or char[]) terminated by null character '\0'. In this article, we will learn how to convert the char* 3 min read How to Convert Char Array to Int in C++ In C++, a character array is treated as a sequence of characters also known as a string. Converting a character array into an integer is a common task that can be performed using various methods and in this article, we will learn how to convert char array to int in C++. Example Input:char arr1[] ="1 2 min read How to Convert a std::string to char* in C++? In C++, strings are the textual data that is represented in two ways: std::string which is an object, and char* is a pointer to a character. In this article, we will learn how to convert a std::string to char* in C++. Example Input:string myString = "GeeksforGeeks";Output:char * myString = "Geeksfor 1 min read How to Extract a Substring from a Character Array in C++? In C++, character arrays are used to store sequences of characters also known as strings. A substring is a part of a string that consists of a continuous sequence of characters from the string. In this article, we will learn how to extract a substring from a character array in C++. Extract a Substri 2 min read How to Compare Two Substrings in a Character Array in C++? In C++, character arrays are used to store a sequence of characters also known as strings. A Substring is a continuous sequence of characters within a string. In this article, we will learn how we can compare two substrings in a character array in C++. Examples: Input: string: "Hello World" Substrin 2 min read How to Convert Hex String to Byte Array in C++? A Hex String is a combination of the digits 0-9 and characters A-F and a byte array is an array used to store byte data types only. The default value of each element of the byte array is 0. In this article, we will learn how to convert a hex string to a byte array. Example: Input: Hex String : "2f4a 2 min read How to Create an Array of Structs in C++? In C++, a struct is a user-defined data type that allows us to combine data of different types and an array of structs is an array in which each element is of the struct type. In this article, we will learn how to create an array of structs in C++. Creating an Array of Structs in C++To create an arr 2 min read Like