会员
周边
众包
新闻
博问
闪存
赞助商
所有博客
当前博客
我的博客
我的园子
账号设置
简洁模式
...
退出登录
注册
登录
cs_jin_scor
博客园
首页
新随笔
联系
订阅
管理
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)
编辑