摘要: 《strcpy拷贝越界问题》 一. 程序一 #include #include void main() { char s[]="123456789"; char d[]="123"; strcpy(d,s); printf("d=%s,\ns=%s",d,s); } 执行结果: 解释: 首先要解释一下,char s[]="123456789"; char ... 阅读全文
posted @ 2015-11-03 10:37 程序员修练之路 阅读(544) 评论(0) 推荐(0) 编辑