the first project

来源:互联网 发布:js字符串不相等 编辑:程序博客网 时间:2024/06/17 09:56

#include <cstdlib>
#include <iostream>

using namespace std;

int main(int argc, char *argv[])
{
   
    string s("hello world");
    string *sp = &s;
    cout<<*sp;
    system("pause");
   
    return EXIT_SUCCESS;
}

原创粉丝点击