码迷,mamicode.com
首页 > 其他好文 > 详细

复制字符串

时间:2018-08-01 16:00:09      阅读:123      评论:0      收藏:0      [点我收藏+]

标签:for   include   char   pause   class   int   div   turn   run   

 1 #include <iostream>
 2 
 3 /* run this program using the console pauser or add your own getch, system("pause") or input loop */
 4 using namespace std;
 5 int main(int argc, char** argv) {
 6     char str1[]="I love CHINA!",str2[20],*p1,*p2;
 7     p1=str1;
 8     p2=str2;
 9     for(;*p1!=\0;p1++,p2++)
10     *p2=*p1;
11     *p2=\0;
12     p1=str1;
13     p2=str2;
14     cout<<"str1 is:"<<p1<<endl;
15     cout<<"str2 is:"<<p2<<endl;
16     return 0;
17 }

 

复制字符串

标签:for   include   char   pause   class   int   div   turn   run   

原文地址:https://www.cnblogs.com/borter/p/9401522.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!