C++入门经典-例6.23-字符串数组赋值与string

C++入门经典-例6.23-字符串数组赋值与string

1:代码如下:

// 6.23.cpp : 定义控制台应用程序的入口点。
//

#include "stdafx.h"
#include 
#include 
using namespace std;

int main(int argc, _TCHAR* argv[])
{
    char aArray[8] ="Welcome";
    string s = aArray;
    cout<

View Code

运行结果:

C++入门经典-例6.23-字符串数组赋值与string_第1张图片

 

posted @ 2017-09-18 15:55 一串字符串 阅读(...) 评论(...) 编辑 收藏

你可能感兴趣的:(C++)