单身百褶裙

文章
6
资源
0
加入时间
2年10月24天

c风格字符串注意事项

char *const p="hello";char ch='s';*p=ch;这段代码在编译时没错调试时出错。解决方法:char str[]="hello";char *const p=&str[0];char ch='s';*p=ch;转载于:https://www.cnblogs.com/children/archive/2009/08/15/1546782.html...