在C++中,两个字符串相加的运算符为+相当于字符串的合并运算。下面C++代码执行后,将输出chenadai 。( )
string a="chen";
string b="a";
string c="dai";
string name=a+b+c;
cout <<name<<endl;