C-Sharp | Java | Python | Swift | GO | WPF | Ruby | Scala | F# | JavaScript | SQL | PHP | Angular | HTML
C++ String c_str()This function returns a pointer to an array that contains null terminated sequence of characters. SyntaxConsider a string str. Syntax would be: str.c_str(); ParameterIt does not contain any parameter. Return valueIt returns a pointer to the c-string representation of the string object's value. ExampleLet's see the simple example. #include<iostream> #include<cstring> #include<string> using namespace std; int main() { string str="Computer is my favorite subject"; char* ch=new char[str.length()+1]; strcpy(ch,str.c_str()); cout<<"String value is :"<<ch; return 0; } Output: String value is: Computer is my favorite subject
Next TopicC++ Strings
|