2、字符串类型

一种是char str1[]
另一种是string

#include<iostream>
#include<string>
using namespace std;

int main()
{
    char str1[] = "hello";
    string str2 = "world";
    cout<<str1<<endl;
    cout<<str2<<endl;
    return 0;
}
posted @ 2024-09-15 18:00  不是孩子了  阅读(4)  评论(0编辑  收藏  举报