会员
周边
众包
新闻
博问
闪存
赞助商
所有博客
当前博客
我的博客
我的园子
账号设置
简洁模式
...
退出登录
注册
登录
children
首页
新随笔
管理
2009年8月15日
c风格字符串注意事项
摘要: char *const p="hello";char ch='s';*p=ch;这段代码在编译时没错调试时出错。解决方法:char str[]="hello";char *const p=&str[0];char ch='s';*p=ch;
阅读全文
posted @ 2009-08-15 14:57 children
阅读(139)
评论(0)
推荐(0)
编辑