string in char
-
string text = "Hi";
char text2[30];wie bekomme ich jetzt den Inhalt von Text in text2 ???
-
strcpy (text2, text);
-
Da bekomm ich folgende Fehlermeldung:
error C2664: 'strcpy' : Konvertierung des Parameters 2 von 'class std::basic_string<char,struct std::char_traits<char>,class std::allocator<char> >' in 'const char *' nicht m
oeglich
-
strcpy (text2, text.c_str());
-
Jetzt gehts. Danke.