“chaîne à char *” Réponses codées

convertir la corde en char c

// "std::string" has a method called "c_str()" that returns a "const char*"
// pointer to its inner memory. You can copy that "const char*" to a variable
// using "strcpy()".

std::string str = "Hello World";
char buffer[50];

strcpy(buffer, str.c_str());

std::cout << buffer;	//Output: Hello World

//POSTED BY eferion ON STACK OVERFLOW (IN SPANISH).
Wololegend

chaîne à char *

std::string str = "string";
const char *cstr = str.c_str();

Java convertit une chaîne en char []

String string =  "ABCDEF" ;
 
char[] charsFromString = string.toCharArray(); // { 'A', 'B', 'C', 'D', 'E', 'F' }
Pable Sorren

chaîne à char à Java

// getting single character from string..
String str="abcd";

char c=str.toChar(0); 

System.out.println("output is "+c); // output is a
dr3am_warri0r

corde à char

string temp = "cat";
char * tab2 = new char [temp.length()+1];
strcpy (tab2, temp.c_str());
Lively Leopard

corde à char

char c=s.charAt(0);//returns h.
coder

Réponses similaires à “chaîne à char *”

Questions similaires à “chaîne à char *”

Plus de réponses similaires à “chaîne à char *” dans C++

Parcourir les réponses de code populaires par langue

Parcourir d'autres langages de code