字符指针 字符串

/*Copyright (c) 2013 ,烟台大学计算机学院
*All rights reserved.
作者:王至超
*完成日期:2013年12月14
*版本号:v1.0
*问题描述:将字符串str1 和str 2
*样例输入:无
*样例输出:无
*问题分析:用简单的方法,学会活学活用
*/
#include <iostream>
using namespace std;
int main()
{

char str1[]=" I love CHINA!",str2[20], *p1,*p2;
p1=str1;
p2=str2;
for(;*p1!='\0';p1++,p2++)
    *p2=*p1;
    *p2='\0';
p1=str1;
p2=str2;
cout<<" str1 is:"<<p1<<endl;
cout<<"str2 is:"<<p2<<endl;
    return 0;
}

字符指针 字符串_第1张图片

你可能感兴趣的:(字符指针 字符串)