2007年3月6日

摘要: //为了实现链式操作,将目的地址返回char * strcpy( char *strDest, const char *strSrc ) // strSrc is input parameter and should not be changed{ assert( (strDest != NULL) && (strSrc != NULL) );// assert parameterchar *a... 阅读全文
posted @ 2007-03-06 16:18 safeking 阅读(261) 评论(0) 推荐(0) 编辑
 
摘要: 1,struct tag { int a; char b; char *point;};access method :struct tag a;//a.bstruct tag *b;//a->b;2, struct tag { int a; char b; struct tag *self_point;// struct tag self_po... 阅读全文
posted @ 2007-03-06 10:59 safeking 阅读(493) 评论(1) 推荐(0) 编辑