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编辑  收藏  举报