string类型,也就是字符串常量
string a="hello c++";
string b="hello python";
比较a和b的大小可以直接使用<,>
char类型
char a[]={'h','e','l','l','o','\0'};
char b[]={'h','e','y','\0'};
比较a,b大小,通过strcmp函数
strcmp(a,b)
//注意char类型的字符串,利用花括号初始化,一定要加上终止符。如果不加可能会出现错误,若不加,在使用strlen的时候必报错。
char c[]="hello"; 这种方式初始化,在末尾隐含了一个终止符。