📜  C++ string.c_str()函数

📅  最后修改于: 2020-10-21 02:20:24             🧑  作者: Mango

C++ string.c_str()

此函数返回一个指向包含空终止字符序列的数组的指针。

句法

考虑一个字符串str。语法为:

str.c_str();

参数

它不包含任何参数。

返回值

它返回一个指向字符串对象值的c字符串表示形式的指针。

让我们看一个简单的例子。

#include
#include
#include
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 :"<

输出:

String value is: Computer is my favorite subject