摘要:
1.本章思维导图: Example1: char *strcpy(char *target, const char *source) { char *t = target; // Copy the contents of source into target. while(*source) *target++ = *source++; // Null-terminate the target. *target = '\0'; // Return pointer to the start of target. return t; } Example2: void *memmove 阅读全文
posted @ 2010-05-17 14:25
tankzhouqiang
阅读(441)
评论(0)
推荐(0)