一个教科书一般的“空指针”错误
摘要:
#include <stdio.h>
#include <afx.h>
/*void my_strcpy(char *s,char *t)
{ int i = 0; while ((s[i] = t[i]) != '\0') i++;
}
*/
void my_strcpy(char *s,char *t)
{ ASSERT ((s!=NULL)&&(t!=NULL)); while ((*s = *t) != '\0') { s++; t++; }
} int main()
{ char *raw = "abc 阅读全文
posted @ 2012-03-16 13:13 阿杜的世界 阅读(125) 评论(0) 推荐(0) 编辑