摘要: int main(){ char * s = "hello,world" ; char *t = "happy"; strcpy(s,t) ; // error return 0; }本来以为并没有什么错误,但是实际运行的时候,出现段错误, 后来修改 char *s =... 阅读全文
posted @ 2015-07-25 11:51 Rocky_Ansi 阅读(961) 评论(0) 推荐(0) 编辑