#include<iostream>
using namespace std;
#include<string>//用C++风格字符串时候要包含这个头文件
int main()
{ //1.C风格字符串
//注意事项 char 字符串名 []
//注意事项 等号后面双引号 包含起来字符串
cout << "hello world" << endl;
char str1[] = "hello world";
cout << str1 << endl;
//2.C++风格字符串
string str2 = "hello world";
cout << str2 << endl;
system("pause");
return 0;
}
hello world
hello world
hello world
请按任意键继续. . .