2012年5月28日
摘要: #include<iostream>using namespace std;void main(){//Part1char *a=new char[7];a[0]='x';a[1]='i';a[2]='e';a[3]='x';a[4]='i';a[5]='e';a[6]='\0';*a='h';cout<<a<<endl;//Part2char *b="xiexie";*b='h';cout< 阅读全文
posted @ 2012-05-28 09:58 cs_jin_scor 阅读(195) 评论(0) 推荐(1) 编辑