- #include <iostream>
- using namespace std;
- int main( )
- {
- char str[]="I love CHINA!";
- cout<<str<<endl;
- return 0;
- }
- #include <string>
- #include <iostream>
- using namespace std;
- int main( )
- {
- string str="I love CHINA!";
- cout<<str<<endl;
- return 0;
- }
- #include <iostream>
- using namespace std;
- int main( )
- {
- char *str="I love CHINA!";
- cout<<str<<endl;
- return 0;
- }
- #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;
- }
聯(lián)系客服