how to convert char* to string in c++ code example

Example 1: c++ cast char to string

// example
char sczName[] = {"Jakes"};
std::string strName = std::string(sczName);

/* SYNTAX
#include <string>
std::string(<char-to-convert>)
*/

Example 2: COnvert string to char * C++

// CPP program to convert string 
// to char array 
#include <bits/stdc++.h> 
  
using namespace std; 
  
// driver code 
int main() 
{ 
    // assigning value to string s 
    string s = "geeksforgeeks"; 
  
    int n = s.length(); 
  
    // declaring character array 
    char char_array[n + 1]; 
  
    // copying the contents of the 
    // string to char array 
    strcpy(char_array, s.c_str()); 
  
    for (int i = 0; i < n; i++) 
        cout << char_array[i]; 
  
    return 0; 
}

Example 3: char to string c++

std::cout << std::string(1, c) << std::endl;

Example 4: why convert char* to string c++

char *cStr = "C++";
std::string Str = std::string(cStr);

Tags:

Java Example