// 字符串复制 char *my_strncpy(char *firstStr,const char *secondStr,int count) { char *tempStr = firstStr; while ((count-- > 0) && (*firstStr++ = *secondStr++)) ; return tempStr; } // 使用 my_strncpy(str,"hello",4); printf("%s",str);
// 字符串复制 char *my_strncpy(char *firstStr,const char *secondStr,int count) { char *tempStr = firstStr; while ((count-- > 0) && (*firstStr++ = *secondStr++)) ; return tempStr; } // 使用 my_strncpy(str,"hello",4); printf("%s",str);
发表评论